| | 162 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 163 | Zen::Engine::Widgets::I_WidgetService& |
| | 164 | GameClient::getWidgetService() |
| | 165 | { |
| | 166 | return m_base.getWidgetService(); |
| | 167 | } |
| | 168 | |
| | 169 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 170 | Zen::Engine::Rendering::I_RenderingCanvas& |
| | 171 | GameClient::getRenderingCanvas() |
| | 172 | { |
| | 173 | return m_base.getRenderingCanvas(); |
| | 174 | } |
| | 175 | |
| | 176 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 177 | bool |
| | 178 | GameClient::initRenderingService(const std::string& _type, const std::string& _title, int _xRes, int _yRes) |
| | 179 | { |
| | 180 | return m_base.initRenderingService(_type, _title, _xRes, _yRes); |
| | 181 | } |
| | 182 | |
| | 183 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 184 | bool |
| | 185 | GameClient::initTerrainService(const std::string& _type) |
| | 186 | { |
| | 187 | return m_base.initTerrainService(_type); |
| | 188 | } |
| | 189 | |
| | 190 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 191 | bool |
| | 192 | GameClient::initSkyService(const std::string& _type) |
| | 193 | { |
| | 194 | return m_base.initSkyService(_type); |
| | 195 | } |
| | 196 | |
| | 197 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 198 | bool |
| | 199 | GameClient::initInputService(const std::string& _type) |
| | 200 | { |
| | 201 | return m_base.initInputService(_type); |
| | 202 | } |
| | 203 | |
| | 204 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 205 | bool |
| | 206 | GameClient::initWidgetService(const std::string& _type) |
| | 207 | { |
| | 208 | return m_base.initWidgetService(_type); |
| | 209 | } |