You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
395 B

using gaemstone.ECS;
namespace gaemstone.Bloxel.Components;
[Module]
public partial class CoreComponents
{
[Symbol, Component]
public readonly struct Chunk
{
public ChunkPos Position { get; }
public Chunk(ChunkPos pos) => Position = pos;
}
[Symbol, Component]
public class ChunkStoreBlocks
: ChunkPaletteStorage<Entity>
{
public ChunkStoreBlocks()
: base(default) { }
}
}