![]() |
Dragonfly 2.2
A text-based game engine
|
00001 /// 00002 /// An "outofbounds" event 00003 /// 00004 00005 #ifndef __EVENT_OUT_H__ 00006 #define __EVENT_OUT_H__ 00007 00008 #include "Event.h" 00009 00010 #define OUT_EVENT "out" 00011 00012 class EventOut : public Event { 00013 00014 public: 00015 EventOut(); 00016 00017 }; 00018 00019 #endif // __EVENT_OUT_H__