| | 214 | } |
| | 215 | |
| | 216 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 217 | Zen::Engine::Widgets::I_WidgetService& |
| | 218 | GameClient::getWidgetService() |
| | 219 | { |
| | 220 | return m_base.getWidgetService(); |
| | 221 | } |
| | 222 | |
| | 223 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 224 | Zen::Engine::Rendering::I_RenderingCanvas& |
| | 225 | GameClient::getRenderingCanvas() |
| | 226 | { |
| | 227 | return m_base.getRenderingCanvas(); |
| | 228 | } |
| | 229 | |
| | 230 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 231 | bool |
| | 232 | GameClient::initRenderingService(const std::string& _type, const std::string& _title, int _xRes, int _yRes) |
| | 233 | { |
| | 234 | return m_base.initRenderingService(_type, _title, _xRes, _yRes); |
| | 235 | } |
| | 236 | |
| | 237 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 238 | bool |
| | 239 | GameClient::initTerrainService(const std::string& _type) |
| | 240 | { |
| | 241 | return m_base.initTerrainService(_type); |
| | 242 | } |
| | 243 | |
| | 244 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 245 | bool |
| | 246 | GameClient::initSkyService(const std::string& _type) |
| | 247 | { |
| | 248 | return m_base.initSkyService(_type); |
| | 249 | } |
| | 250 | |
| | 251 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 252 | bool |
| | 253 | GameClient::initInputService(const std::string& _type) |
| | 254 | { |
| | 255 | return m_base.initInputService(_type); |
| | 256 | } |
| | 257 | |
| | 258 | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ |
| | 259 | bool |
| | 260 | GameClient::initWidgetService(const std::string& _type) |
| | 261 | { |
| | 262 | return m_base.initWidgetService(_type); |