Even more DotNet stuff, help

This commit is contained in:
Simon Lübeß
2022-04-26 22:36:27 +02:00
parent ad1b37dc64
commit 8c53f21690
14 changed files with 821 additions and 63 deletions
@@ -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
}