GameObjectComponent.cs 169 B

123456789
  1. using UnityEngine;
  2. namespace ET.Client
  3. {
  4. public class GameObjectComponent: Entity, IAwake, IDestroy
  5. {
  6. public GameObject GameObject { get; set; }
  7. }
  8. }