1234567891011121314151617 |
- using UnityEngine;
- namespace ET
- {
- public enum CodeMode
- {
- Client = 1,
- Server = 2,
- ClientServer = 3,
- }
-
- [CreateAssetMenu(menuName = "ET/CreateGlobalConfig", fileName = "GlobalConfig", order = 0)]
- public class GlobalConfig: ScriptableObject
- {
- public CodeMode CodeMode;
- }
- }
|