diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-02 19:03:32 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-02 20:25:31 +0100 |
commit | 5a95eb1282e30bd803d7e0b352a8443795842e42 (patch) | |
tree | c97bc43e4d5107a427817c65aa1b0c2eeb64a427 /floormat/main.hpp | |
parent | 0fe5336b9a53f20817f54be0bd7cd935db14914c (diff) |
fix build with Linux and/or GCC
Diffstat (limited to 'floormat/main.hpp')
-rw-r--r-- | floormat/main.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/floormat/main.hpp b/floormat/main.hpp index da7e59b9..9347ad40 100644 --- a/floormat/main.hpp +++ b/floormat/main.hpp @@ -36,7 +36,7 @@ struct floormat_main virtual global_coords pixel_to_tile(Vector2d position) const noexcept = 0; - virtual world& world() noexcept = 0; + virtual struct world& world() noexcept = 0; virtual SDL_Window* window() noexcept = 0; [[nodiscard]] static floormat_main* create(floormat_app& app, fm_settings&& options); |