mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 12:49:56 +00:00
9 lines
196 B
C++
9 lines
196 B
C++
|
|
||
|
#include "idtablebase.hpp"
|
||
|
|
||
|
CSMWorld::IdTableBase::IdTableBase (unsigned int features) : mFeatures (features) {}
|
||
|
|
||
|
unsigned int CSMWorld::IdTableBase::getFeatures() const
|
||
|
{
|
||
|
return mFeatures;
|
||
|
}
|