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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
199 B
C++
Raw Normal View History

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