mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
d1fb854521
esm typo esm typo
31 lines
471 B
C++
31 lines
471 B
C++
#ifndef OPENMW_ESSIMPORT_IMPORTSCRI_H
|
|
#define OPENMW_ESSIMPORT_IMPORTSCRI_H
|
|
|
|
#include <components/esm3/variant.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
/// Local variable assignments for a running script
|
|
struct SCRI
|
|
{
|
|
std::string mScript;
|
|
|
|
std::vector<short> mShorts;
|
|
std::vector<int> mLongs;
|
|
std::vector<float> mFloats;
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|