mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
16 lines
254 B
C++
16 lines
254 B
C++
|
#ifndef OPENMW_ESSIMPORT_CONVERTCNTC_H
|
||
|
#define OPENMW_ESSIMPORT_CONVERTCNTC_H
|
||
|
|
||
|
#include "importcntc.hpp"
|
||
|
|
||
|
#include <components/esm/containerstate.hpp>
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
void convertCNTC(const CNTC& cntc, ESM::ContainerState& state);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|