You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
463 B
C++
23 lines
463 B
C++
12 years ago
|
#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
|