12 lines
259 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |