9 lines
183 B
C#
9 lines
183 B
C#
using System.Numerics;
|
|
|
|
namespace AcDream.Core.Terrain;
|
|
|
|
public readonly record struct Vertex(
|
|
Vector3 Position,
|
|
Vector3 Normal,
|
|
Vector2 TexCoord,
|
|
uint TerrainLayer);
|