1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 10:23:53 +00:00
openmw/apps/opencs/model/world/idtablebase.cpp

12 lines
199 B
C++
Raw Normal View History

#include "idtablebase.hpp"
2022-09-22 18:26:05 +00:00
CSMWorld::IdTableBase::IdTableBase(unsigned int features)
: mFeatures(features)
{
}
unsigned int CSMWorld::IdTableBase::getFeatures() const
{
return mFeatures;
2015-03-11 14:54:45 +00:00
}