mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
23 lines
439 B
C++
23 lines
439 B
C++
#ifndef GAME_RENDER_CELL_H
|
|
#define GAME_RENDER_CELL_H
|
|
|
|
namespace MWRender
|
|
{
|
|
class CellRender
|
|
{
|
|
public:
|
|
|
|
virtual ~CellRender() {};
|
|
|
|
/// Make the cell visible. Load the cell if necessary.
|
|
virtual void show() = 0;
|
|
|
|
/// Remove the cell from rendering, but don't remove it from
|
|
/// memory.
|
|
virtual void hide() = 0;
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|