mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:49:56 +00:00
14 lines
332 B
C++
14 lines
332 B
C++
#include "esm_land_factory.hpp"
|
|
|
|
// The first one already includes the others implicitly, but it
|
|
// doesn't hurt to be explicit.
|
|
#include "../esm_store/store.hpp"
|
|
#include "../esm/esmreader.hpp"
|
|
#include "../esm/loadland.hpp"
|
|
|
|
using namespace Terrain;
|
|
|
|
bool ESMLandFactory::has(int x, int y)
|
|
{
|
|
return store.landscapes.has(x,y);
|
|
}
|