1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-13 18:09:39 +00:00

Added getCreatures

This commit is contained in:
Marek Kochanowicz 2013-12-22 14:44:22 +01:00
parent 16af9e6986
commit 32046070d5
2 changed files with 6 additions and 0 deletions

View file

@ -266,3 +266,8 @@ const CSMWorld::RefIdDataContainer< ESM::Container >& CSMWorld::RefIdData::getCo
{
return mContainers;
}
const CSMWorld::RefIdDataContainer< ESM::Creature >& CSMWorld::RefIdData::getCreatures() const
{
return mCreatures;
}

View file

@ -228,6 +228,7 @@ namespace CSMWorld
const RefIdDataContainer<ESM::Armor>& getArmors() const;
const RefIdDataContainer<ESM::Clothing>& getClothing() const;
const RefIdDataContainer<ESM::Container>& getContainers() const;
const RefIdDataContainer<ESM::Creature>& getCreatures() const;
};
}