From aaf0a73578ecbb8212e0d224d6fff68a229b1f48 Mon Sep 17 00:00:00 2001 From: tom Date: Tue, 5 May 2015 21:01:52 -0500 Subject: fleshed out list, locations of all creatures and resources are now within --- src/event.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/event.cpp') diff --git a/src/event.cpp b/src/event.cpp index ba7fda8..56c4951 100644 --- a/src/event.cpp +++ b/src/event.cpp @@ -3,12 +3,12 @@ Event::Event() { run = true; -}; +} int Event::Poll() { SDL_PollEvent(&v); -}; +} void Event::off() { @@ -18,15 +18,15 @@ void Event::off() bool Event::gRun() { return run; -}; +} SDL_Event& Event::gEvent() { SDL_Event* x = &v; return *x; -}; +} int Event::gEventType() { return v.type; -}; +} -- cgit v1.2.3