blob: a4fed25ef1b9479ed186bf1108be2f54d17e1a97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "../../GFX/Mesh.hpp"
#include "../Chunk.hpp"
namespace MC::World::Generation::ChunkMeshing {
struct ChunkNeighbors { Chunk &north, &east, &south, &west; };
GFX::Mesh create_mesh_for_chunk(Chunk& chunk, ChunkNeighbors neighbors);
}
|