mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 18:59:57 +00:00
Implements some cell params + linux compile fix
This commit is contained in:
parent
562e129bd0
commit
e81e278363
1 changed files with 3 additions and 3 deletions
|
@ -107,13 +107,13 @@ namespace ESM4
|
|||
|
||||
int getGridX() const override { return mX; }
|
||||
int getGridY() const override { return mY; }
|
||||
bool isExterior() const override { return false; /*unimplemented for now*/ }
|
||||
virtual bool isQuasiExterior() const override { return false; /*unimplemented for now*/ }
|
||||
bool isExterior() const override { return !(mFlags & CELL_Interior); }
|
||||
virtual bool isQuasiExterior() const override { return mFlags & CELL_QuasiExt; }
|
||||
virtual bool hasWater() const override { return false; /*unimplemented for now*/ }
|
||||
const ESM::CellId& getCellId() const override { return mCellId; }
|
||||
const ESM::RefId& getRegion() const override { return ESM::RefId::sEmpty; }
|
||||
std::string_view getEditorName() const override { return mEditorId; }
|
||||
std::string getDescription() const override { return mEditorId; };
|
||||
std::string getDescription() const override { return mEditorId; }
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue