ComponentView.cs 180 B

12345678910111213
  1. using UnityEngine;
  2. namespace ET
  3. {
  4. public class ComponentView: MonoBehaviour
  5. {
  6. public object Component
  7. {
  8. get;
  9. set;
  10. }
  11. }
  12. }