| | 235 | } |
| | 236 | |
| | 237 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 238 | Zen::Engine::Widgets::I_WidgetService& |
| | 239 | GameClient::getWidgetService() |
| | 240 | { |
| | 241 | return m_baseClient.getWidgetService(); |
| | 242 | } |
| | 243 | |
| | 244 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 245 | Zen::Engine::Rendering::I_RenderingCanvas& |
| | 246 | GameClient::getRenderingCanvas() |
| | 247 | { |
| | 248 | return m_baseClient.getRenderingCanvas(); |
| | 249 | } |
| | 250 | |
| | 251 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 252 | bool |
| | 253 | GameClient::initRenderingService(const std::string& _type, const std::string& _title, int _xRes, int _yRes) |
| | 254 | { |
| | 255 | return m_baseClient.initRenderingService(_type, _title, _xRes, _yRes); |
| | 256 | } |
| | 257 | |
| | 258 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 259 | bool |
| | 260 | GameClient::initTerrainService(const std::string& _type) |
| | 261 | { |
| | 262 | return m_baseClient.initTerrainService(_type); |
| | 263 | } |
| | 264 | |
| | 265 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 266 | bool |
| | 267 | GameClient::initSkyService(const std::string& _type) |
| | 268 | { |
| | 269 | return m_baseClient.initSkyService(_type); |
| | 270 | } |
| | 271 | |
| | 272 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 273 | bool |
| | 274 | GameClient::initInputService(const std::string& _type) |
| | 275 | { |
| | 276 | return m_baseClient.initInputService(_type); |
| | 277 | } |
| | 278 | |
| | 279 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 280 | bool |
| | 281 | GameClient::initWidgetService(const std::string& _type) |
| | 282 | { |
| | 283 | return m_baseClient.initWidgetService(_type); |