GlobalData.cs 252 B

1234567891011
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class GlobalData
  5. {
  6. /// <summary>
  7. /// 当前操作模式
  8. /// </summary>
  9. public static OperationMode m_CurrentOperationMode = OperationMode.None;
  10. }