acdream/src/AcDream.Core/Terrain/Vertex.cs
Erik 324abed6eb feat(core): add Vertex.TerrainLayer + LandblockMesh layer map
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-10 20:16:25 +02:00

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);