mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
12 lines
339 B
C++
12 lines
339 B
C++
#include "objects.hpp"
|
|
#include "npcs.hpp"
|
|
#include "creatures.hpp"
|
|
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;
|
|
};
|
|
} |