1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 09:53:54 +00:00
openmw/apps/essimporter/convertcrec.cpp

14 lines
226 B
C++
Raw Normal View History

#include "convertcrec.hpp"
#include "convertinventory.hpp"
namespace ESSImport
{
2022-09-22 18:26:05 +00:00
void convertCREC(const CREC& crec, ESM::CreatureState& state)
{
convertInventory(crec.mInventory, state.mInventory);
}
}