1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-02 22:45:35 +00:00
openmw/game/render/cell.hpp

19 lines
257 B
C++
Raw Normal View History

#ifndef _GAME_RENDER_CELL_H
#define _GAME_RENDER_CELL_H
#include "../cell_store.hpp"
namespace Render
{
class CellRender
{
const ESMS::CellStore *cell;
public:
CellRender(const ESMS::CellStore &_cell)
: cell(&_cell) {}
};
}
#endif