mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 00:15:06 +00:00
14 lines
227 B
C++
14 lines
227 B
C++
#include "convertcntc.hpp"
|
|
|
|
#include "convertinventory.hpp"
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void convertCNTC(const CNTC& cntc, ESM::ContainerState& state)
|
|
{
|
|
convertInventory(cntc.mInventory, state.mInventory);
|
|
}
|
|
|
|
}
|