YAPOG  0.0.1
Yet Another Pokemon Online Game
BaseScreen.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_CLIENT_BASESCREEN_HPP
2 # define YAPOG_CLIENT_BASESCREEN_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
9  class ContentManager;
10  class ObjectFactory;
11  class WorldObjectStateFactory;
12  class GameInputManager;
13  class Logger;
14 } // namespace yap
15 
16 namespace ycl
17 {
18  class Session;
19 
20  class BaseScreen : public yap::GameScreen
21  {
23 
24  public:
25 
26  virtual ~BaseScreen ();
27 
28  protected:
29 
30  explicit BaseScreen (
31  const yap::ScreenType& type,
32  yap::IDrawingContext& context);
33 
35 
37 
39 
42 
44 
46  };
47 } // namespace ycl
48 
49 #endif // YAPOG_CLIENT_BASESCREEN_HPP