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.
31 lines
469 B
C++
31 lines
469 B
C++
#ifndef OPENMW_ESSIMPORT_IMPORTSCRI_H
|
|
#define OPENMW_ESSIMPORT_IMPORTSCRI_H
|
|
|
|
#include <components/esm/variant.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
/// Local variable assigments 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
|