12 lines
269 B
C#
12 lines
269 B
C#
using Unity.Collections;
|
|
using Unity.Mathematics;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public class FertilityMap : NativeGrid<FertilityMapValue>
|
|
{
|
|
public FertilityMap(int2 size) : base(size, Allocator.Persistent)
|
|
{
|
|
}
|
|
}
|
|
} |