2015-01-22 02:54:33 +00:00
|
|
|
#ifndef OPENMW_ESSIMPORT_IMPORTSCRI_H
|
|
|
|
#define OPENMW_ESSIMPORT_IMPORTSCRI_H
|
|
|
|
|
2022-01-22 14:58:41 +00:00
|
|
|
#include <components/esm3/variant.hpp>
|
2015-01-22 02:54:33 +00:00
|
|
|
|
2023-12-17 14:21:12 +00:00
|
|
|
#include <cstdint>
|
2015-01-22 02:54:33 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace ESM
|
|
|
|
{
|
|
|
|
class ESMReader;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ESSImport
|
|
|
|
{
|
|
|
|
|
2016-12-14 15:39:33 +00:00
|
|
|
/// Local variable assignments for a running script
|
2015-01-22 02:54:33 +00:00
|
|
|
struct SCRI
|
|
|
|
{
|
|
|
|
std::string mScript;
|
|
|
|
|
|
|
|
std::vector<short> mShorts;
|
|
|
|
std::vector<int> mLongs;
|
|
|
|
std::vector<float> mFloats;
|
|
|
|
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|