You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
338 B
C++
26 lines
338 B
C++
#ifndef OPENMW_ESSIMPORT_IMPORTCNTC_H
|
|
#define OPENMW_ESSIMPORT_IMPORTCNTC_H
|
|
|
|
#include "importinventory.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
/// Changed container contents
|
|
struct CNTC
|
|
{
|
|
int mIndex;
|
|
|
|
Inventory mInventory;
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
#endif
|