openmw/apps/essimporter/convertcntc.cpp

14 lines
227 B
C++
Raw Permalink Normal View History

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