Files
TEngine/Assets/GameScripts/DotNet/Core/Entity/ComponentView.cs
ALEXTANG 336d4b2eb9 [+] 接入ET8服务端
[+] 接入ET8服务端
2023-07-13 12:23:48 +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