2024-11-08 00:28:35 +00:00
|
|
|
namespace LyraApi.Ecs;
|
2024-11-09 02:05:02 +00:00
|
|
|
using ExampleWorld.wit.imports.lyra.api;
|
2024-11-08 00:28:35 +00:00
|
|
|
|
2024-11-09 02:05:02 +00:00
|
|
|
public class Entity(IEcs.Entity entity)
|
|
|
|
{
|
2024-11-08 00:28:35 +00:00
|
|
|
internal IEcs.Entity Inner { get; set; } = entity;
|
|
|
|
|
|
|
|
public ulong Id { get => Inner.id.id; }
|
|
|
|
public ulong Generation { get => Inner.generation; }
|
2024-11-09 02:05:02 +00:00
|
|
|
|
2024-11-08 00:28:35 +00:00
|
|
|
}
|