mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Even more DotNet stuff, help
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user