blob: 1c37cacf9df85b724b8a5be71bbb61f47ea05906 (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
namespace floormat {
struct z_bounds final { int8_t min, max, cur; bool only; };
struct draw_bounds final { int16_t minx, maxx, miny, maxy; };
} // namespace floormat
|