using gaemstone.ECS; namespace gaemstone.Client; [Component] public readonly struct Mesh { public uint Handle { get; } public int Count { get; } public bool IsIndexed { get; } public Mesh(uint handle, int count, bool indexed = true) { Handle = handle; Count = count; IsIndexed = indexed; } }