UIViewComponent.cs 323 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace ET
  5. {
  6. public class UIViewComponentAwakeSystem : AwakeSystem<UIViewComponent>
  7. {
  8. public override void Awake(UIViewComponent self)
  9. {
  10. }
  11. }
  12. /// <summary>
  13. /// 管理所有UI
  14. /// </summary>
  15. public class UIViewComponent: Entity
  16. {
  17. }
  18. }