aboutsummaryrefslogtreecommitdiffstats
path: root/include/events.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-11-27 16:28:51 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-11-27 16:28:51 -0500
commit3437e928e978939aa4c85369ab597e08f00ab93b (patch)
tree761f06a34bd8de78440c31026cf2c96df1ccad4f /include/events.hpp
parent21ce3f06312a02c23d6b3c89f64f84222f54fe6d (diff)
world draw fix; offset fix
Diffstat (limited to 'include/events.hpp')
-rw-r--r--include/events.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/events.hpp b/include/events.hpp
index 975855c..f38d4e6 100644
--- a/include/events.hpp
+++ b/include/events.hpp
@@ -1,4 +1,4 @@
-#ifndef EVENTS_HPP_
+z#ifndef EVENTS_HPP_
#define EVENTS_HPP_
/**
@@ -75,7 +75,7 @@ struct BGMToggleEvent {
struct WindowResizeEvent {
WindowResizeEvent(int w = 640, int h = 480)
: x(w), y(h) {}
-
+
int x;
int y;
};
@@ -83,9 +83,9 @@ struct WindowResizeEvent {
struct ScreenshotEvent {
ScreenshotEvent(int w = game::SCREEN_HEIGHT, int h = game::SCREEN_WIDTH)
: w(w), h(h) {}
-
+
int w;
- int h;
+ int h;
};
#endif // EVENTS_HPP_