1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-05 13:45:35 +00:00
openmw/apps/openmw/mwrender/renderinginterface.hpp
2015-04-21 23:40:10 +02:00

16 lines
292 B
C++

#ifndef GAME_RENDERING_INTERFACE_H
#define GAME_RENDERING_INTERFACE_H
namespace MWRender
{
class Objects;
class Actors;
class RenderingInterface
{
public:
virtual MWRender::Objects& getObjects() = 0;
virtual ~RenderingInterface(){}
};
}
#endif