aboutsummaryrefslogtreecommitdiffstats
path: root/include/events.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-10-11 21:24:43 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-10-11 21:24:43 -0500
commitf46be773dd1283688ec1feda1c50e6edaf6d1113 (patch)
treee776569254517ba8a76763623b02c0f5530a1eb1 /include/events.hpp
parent8a71861846c41c5f432570262b398c7627743c91 (diff)
WIP make worldsystem manage music
Diffstat (limited to 'include/events.hpp')
-rw-r--r--include/events.hpp11
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_