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