- using UnityEngine;
- namespace ET.Client
- {
- [ComponentOf(typeof(Scene))]
- public class GlobalViewComponent: Entity, IAwake
- {
- [StaticField]
- public static GlobalViewComponent Instance;
-
- public Transform Global;
- public Transform Unit { get; set; }
- //public Transform UI;
- }
- }
|