diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-28 09:52:39 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-29 11:49:19 +0200 |
commit | 142af4f233cb5eb0b17689226c586b48509f0474 (patch) | |
tree | 5da9322ab1f54753917829bd4104f322fdfce11e /floormat/main.hpp | |
parent | c3d79fdf679a749d961719ad662b9f46b0f26ec1 (diff) |
split off common code in main draw loop
Diffstat (limited to 'floormat/main.hpp')
-rw-r--r-- | floormat/main.hpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/floormat/main.hpp b/floormat/main.hpp index 59039152..648cd732 100644 --- a/floormat/main.hpp +++ b/floormat/main.hpp @@ -25,13 +25,11 @@ struct texture_unit_cache; class path_search; class astar; struct point; +struct z_bounds; +struct draw_bounds; struct floormat_main { - struct draw_bounds final - { - int16_t minx, maxx, miny, maxy; - }; struct meshes final { ground_mesh& ground; |