1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +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 21:26:05 +03:00
void convertCREC(const CREC& crec, ESM::CreatureState& state)
{
convertInventory(crec.mInventory, state.mInventory);
}
}