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