YAPOG  0.0.1
Yet Another Pokemon Online Game
BaseScreen.cpp
Go to the documentation of this file.
6 
8 #include "Client/Session.hpp"
9 
10 namespace ycl
11 {
13  const yap::ScreenType& screenType,
14  yap::IDrawingContext& context)
15  : yap::GameScreen (screenType)
16  , context_ (context)
17  , session_ (Session::Instance ())
18  , contentManager_ (yap::ContentManager::Instance ())
19  , objectFactory_ (yap::ObjectFactory::Instance ())
20  , worldObjectStateFactory_ (yap::WorldObjectStateFactory::Instance ())
21  , gameInputManager_ (yap::GameInputManager::Instance ())
22  , logger_ (yap::DebugLogger::Instance ())
23  {
24  }
25 
27  {
28  }
29 } // namespace ycl