YAPOG  0.0.1
Yet Another Pokemon Online Game
GuiEvent.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_GUIEVENT_HPP
2 # define YAPOG_GUIEVENT_HPP
3 
4 # include <SFML/Window/Event.hpp>
5 
6 # include "YAPOG/Macros.hpp"
7 
8 namespace yap
9 {
11  typedef sf::Event::EventType GuiEventType;
12 
13  class YAPOG_LIB GuiEvent : public sf::Event
14  {
16 
17  public:
18 
19  GuiEvent ();
20  virtual ~GuiEvent ();
21  };
22 } // namespace yap
23 
24 #endif // YAPOG_GUIEVENT_HPP