mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
15 lines
212 B
C#
15 lines
212 B
C#
#if UNITY_EDITOR
|
|
using UnityEngine;
|
|
|
|
namespace TEngine
|
|
{
|
|
public class ComponentView: MonoBehaviour
|
|
{
|
|
public Entity Component
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|
|
#endif |