1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +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);
}
}