1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 17:19:56 +00:00
openmw-tes3mp/apps/openmw/mwrender/terrainstorage.hpp

23 lines
463 B
C++
Raw Normal View History

#ifndef MWRENDER_TERRAINSTORAGE_H
#define MWRENDER_TERRAINSTORAGE_H
#include <components/terrain/storage.hpp>
namespace MWRender
{
class TerrainStorage : public Terrain::Storage
{
private:
virtual ESM::Land* getLand (int cellX, int cellY);
virtual const ESM::LandTexture* getLandTexture(int index, short plugin);
public:
virtual Ogre::AxisAlignedBox getBounds();
///< Get bounds in cell units
};
}
#endif