1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/apps/essimporter/convertcntc.cpp

14 lines
227 B
C++
Raw Normal View History

2015-01-19 12:16:12 +00:00
#include "convertcntc.hpp"
#include "convertinventory.hpp"
namespace ESSImport
{
2022-09-22 18:26:05 +00:00
void convertCNTC(const CNTC& cntc, ESM::ContainerState& state)
2015-01-19 12:16:12 +00:00
{
convertInventory(cntc.mInventory, state.mInventory);
}
}