mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
b1bd236345
Had to add special reading code to openmw, because the variable names are not stored.
17 lines
284 B
C++
17 lines
284 B
C++
#ifndef OPENMW_ESSIMPORT_CONVERTSCRI_H
|
|
#define OPENMW_ESSIMPORT_CONVERTSCRI_H
|
|
|
|
#include "importscri.hpp"
|
|
|
|
#include <components/esm/locals.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
/// Convert script variable assignments
|
|
void convertSCRI (const SCRI& scri, ESM::Locals& locals);
|
|
|
|
}
|
|
|
|
#endif
|