mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 02:15:33 +00:00
19 lines
257 B
C++
19 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
|