From 3437e928e978939aa4c85369ab597e08f00ab93b Mon Sep 17 00:00:00 2001 From: Clyne Sullivan <tullivan99@gmail.com> Date: Sun, 27 Nov 2016 16:28:51 -0500 Subject: world draw fix; offset fix --- include/events.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/events.hpp') 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_ -- cgit v1.2.3