GameObjectComponent.cs 201 B

12345678910
  1. using UnityEngine;
  2. namespace ET.Client
  3. {
  4. [ComponentOf(typeof(Unit))]
  5. public class GameObjectComponent: Entity, IAwake, IDestroy
  6. {
  7. public GameObject GameObject { get; set; }
  8. }
  9. }