TH1/Unity/Assets/Scripts/Core/Entity/ComponentView.cs
2025-07-17 18:26:28 +08:00

15 lines
219 B
C#

#if ENABLE_VIEW && UNITY_EDITOR
using UnityEngine;
namespace ET
{
public class ComponentView: MonoBehaviour
{
public Entity Component
{
get;
set;
}
}
}
#endif