YAPOG  0.0.1
Yet Another Pokemon Online Game
RegistrationScreen.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_CLIENT_REGISTRATIONSCREEN_HPP
2 # define YAPOG_CLIENT_REGISTRATIONSCREEN_HPP
3 
4 # include "YAPOG/Macros.hpp"
5 
8 
9 namespace ycl
10 {
12  {
14 
15  public:
16 
17  explicit RegistrationScreen (yap::IDrawingContext& context);
18  virtual ~RegistrationScreen ();
19 
20  protected:
21 
22  virtual void HandleInit ();
23  virtual bool HandleOnPriorityEvent (const yap::GuiEvent& guiEvent);
24 
25  virtual void HandleRun (
26  const yap::Time& dt,
27  yap::IDrawingContext& context);
28 
29  virtual void HandleDeactivate ();
30 
31  private:
32 
34 
36  };
37 } // namespace ycl
38 
39 #endif // YAPOG_CLIENT_REGISTRATIONSCREEN_HPP