riversong code showcase
This commit is contained in:
12
Source/Riversong/Game/World/FertilityMap/FertilityMap.cs
Normal file
12
Source/Riversong/Game/World/FertilityMap/FertilityMap.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Unity.Collections;
|
||||
using Unity.Mathematics;
|
||||
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
public class FertilityMap : NativeGrid<FertilityMapValue>
|
||||
{
|
||||
public FertilityMap(int2 size) : base(size, Allocator.Persistent)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user