sandpypi/Sand.ChunkPrototype/ChunkResidencyConfig.cs

10 lines
216 B
C#

namespace Sand.ChunkPrototype;
public sealed record ChunkResidencyConfig(
int ChunkWidth,
int ChunkHeight,
int Capacity = 4096)
{
public static ChunkResidencyConfig Default { get; } = new(32, 32);
}