mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 21:29:56 +00:00
11 lines
199 B
C++
11 lines
199 B
C++
#include "idtablebase.hpp"
|
|
|
|
CSMWorld::IdTableBase::IdTableBase(unsigned int features)
|
|
: mFeatures(features)
|
|
{
|
|
}
|
|
|
|
unsigned int CSMWorld::IdTableBase::getFeatures() const
|
|
{
|
|
return mFeatures;
|
|
}
|