mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
14 lines
391 B
C++
14 lines
391 B
C++
#include "objects.hpp"
|
|
#include "npcs.hpp"
|
|
#include "creatures.hpp"
|
|
#include "player.hpp"
|
|
#define RENDERING_INTERFACE 1
|
|
namespace MWRender{
|
|
class RenderingInterface{
|
|
public:
|
|
virtual MWRender::Npcs& getNPCs() = 0;
|
|
virtual MWRender::Creatures& getCreatures() = 0;
|
|
virtual MWRender::Objects& getObjects() = 0;
|
|
virtual MWRender::Player& getPlayer() = 0;
|
|
};
|
|
} |