1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 22:53:53 +00:00
openmw/game/render/cell.hpp
2010-06-03 20:44:55 +02:00

18 lines
257 B
C++

#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