mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
12 lines
199 B
C++
12 lines
199 B
C++
#include "idtablebase.hpp"
|
|
|
|
CSMWorld::IdTableBase::IdTableBase(unsigned int features)
|
|
: mFeatures(features)
|
|
{
|
|
}
|
|
|
|
unsigned int CSMWorld::IdTableBase::getFeatures() const
|
|
{
|
|
return mFeatures;
|
|
}
|