diff options
Diffstat (limited to 'include/events.hpp')
-rw-r--r-- | include/events.hpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/events.hpp b/include/events.hpp index 1fe7d7a..4d1415c 100644 --- a/include/events.hpp +++ b/include/events.hpp @@ -7,7 +7,9 @@ #include <SDL2/SDL.h> - struct MouseScrollEvent { +#include <string> + +struct MouseScrollEvent { MouseScrollEvent(int sd = 0) : scrollDistance(sd) {} @@ -35,4 +37,11 @@ struct GameEndEvent { bool really; }; +struct BGMToggleEvent { + BGMToggleEvent(std::string f) + : file(f) {} + + std::string file; +} + #endif // EVENTS_HPP_ |