mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-27 03:35:27 +00:00
Implements some cell params + linux compile fix
This commit is contained in:
parent
562e129bd0
commit
e81e278363
@ -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…
x
Reference in New Issue
Block a user