1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 12:42:11 +00:00
OpenMW/apps/openmw/mwrender/renderinginterface.hpp

16 lines
406 B
C++
Raw Normal View History

2011-11-12 20:58:22 +00:00
#ifndef _GAME_RENDERING_INTERFACE_H
#define _GAME_RENDERING_INTERFACE_H
namespace MWRender{
2011-11-12 20:58:22 +00:00
class Objects;
class Actors;
2011-11-12 20:58:22 +00:00
class Player;
class RenderingInterface{
public:
virtual MWRender::Objects& getObjects() = 0;
virtual MWRender::Player& getPlayer() = 0;
virtual MWRender::Actors& getActors() = 0;
2011-11-12 20:58:22 +00:00
virtual ~RenderingInterface(){};
};
2011-11-12 20:58:22 +00:00
}
#endif