|
namespace LyraApi.Ecs;
|
|
using ExampleWorld.wit.imports.lyra.api;
|
|
|
|
public class Entity(IEcs.Entity entity)
|
|
{
|
|
internal IEcs.Entity Inner { get; set; } = entity;
|
|
|
|
public ulong Id { get => Inner.id.id; }
|
|
public ulong Generation { get => Inner.generation; }
|
|
|
|
} |