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