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