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