mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
17 lines
284 B
C#
17 lines
284 B
C#
namespace DotNetScriptingHelper;
|
|
|
|
public struct Entity
|
|
{
|
|
public EcsEntity Handle { get; private set; }
|
|
// TODO: Scene
|
|
|
|
public bool IsValid => Handle.IsValid;
|
|
|
|
public Entity(EcsEntity handle)
|
|
{
|
|
Handle = handle;
|
|
}
|
|
|
|
// TODO: Get Parent, Children
|
|
}
|