mirror of
https://github.com/DCFApixels/DragonECS-Unity.git
synced 2025-09-17 17:34:34 +08:00
21 lines
519 B
C#
21 lines
519 B
C#
using UnityEngine;
|
|
|
|
namespace DCFApixels.DragonECS.Unity.Internal
|
|
{
|
|
[MetaColor(MetaColor.Gray)]
|
|
[MetaGroup(EcsUnityConsts.PACK_GROUP, EcsConsts.DEBUG_GROUP)]
|
|
[MetaDescription(EcsConsts.AUTHOR, "...")]
|
|
[MetaTags(MetaTags.HIDDEN)]
|
|
internal class EntityMonitor : MonoBehaviour
|
|
{
|
|
private entlong _entity;
|
|
public entlong Entity
|
|
{
|
|
get { return _entity; }
|
|
}
|
|
public void Set(entlong entity)
|
|
{
|
|
_entity = entity;
|
|
}
|
|
}
|
|
} |