blob: ace24904840b2338b2ffd562f9d3b4ccfb3b5574 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
namespace floormat {
struct tile_shader;
struct chunk;
struct wall_mesh final
{
wall_mesh();
void draw(tile_shader& shader, chunk& c);
};
} // namespace floormat
|