mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 01:45:33 +00:00
12 lines
No EOL
339 B
C++
12 lines
No EOL
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;
|
|
};
|
|
} |