2010-06-05 20:37:01 +02:00
|
|
|
#ifndef _GAME_RENDER_MWSCENE_H
|
|
|
|
#define _GAME_RENDER_MWSCENE_H
|
|
|
|
|
2010-08-03 20:40:45 +02:00
|
|
|
#include <utility>
|
2010-07-16 14:26:46 +02:00
|
|
|
#include <openengine/ogre/renderer.hpp>
|
2011-02-26 16:37:47 +01:00
|
|
|
#include <openengine/bullet/physic.hpp>
|
2010-06-05 20:37:01 +02:00
|
|
|
|
2011-01-25 17:56:49 +01:00
|
|
|
#include <vector>
|
2011-02-10 13:32:34 +01:00
|
|
|
#include <string>
|
2011-01-25 17:56:49 +01:00
|
|
|
|
2010-06-06 13:36:45 +02:00
|
|
|
namespace Ogre
|
|
|
|
{
|
|
|
|
class Camera;
|
|
|
|
class Viewport;
|
|
|
|
class SceneManager;
|
|
|
|
class SceneNode;
|
2010-08-03 20:17:31 +02:00
|
|
|
class RaySceneQuery;
|
2011-01-25 17:56:49 +01:00
|
|
|
class Quaternion;
|
|
|
|
class Vector3;
|
2010-06-06 13:36:45 +02:00
|
|
|
}
|
|
|
|
|
2010-08-25 09:19:15 +02:00
|
|
|
namespace MWWorld
|
|
|
|
{
|
|
|
|
class World;
|
|
|
|
}
|
|
|
|
|
2010-06-08 13:53:34 +02:00
|
|
|
namespace MWRender
|
2010-06-05 20:37:01 +02:00
|
|
|
{
|
2011-01-08 15:11:37 +01:00
|
|
|
class Player;
|
|
|
|
|
2011-10-22 00:15:15 -04:00
|
|
|
class Debugging{
|
|
|
|
OEngine::Physic::PhysicEngine* eng;
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
Debugging(OEngine::Physic::PhysicEngine* engine);
|
|
|
|
bool toggleRenderMode (int mode);
|
|
|
|
};
|
|
|
|
|
2011-01-08 15:11:37 +01:00
|
|
|
|
2010-06-05 20:37:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|