Files
2026-05-21 16:04:49 +02:00

12 lines
259 B
C#

using Unity.Collections;
using Unity.Mathematics;
namespace DanieleMarotta.RiversongCodeShowcase
{
public class WorldHeightmap : NativeGrid<int>
{
public WorldHeightmap(int2 size) : base(size, Allocator.Persistent)
{
}
}
}