#ifndef OPENMW_COMPONENTS_INTERPRETER_PROGRAM_H #define OPENMW_COMPONENTS_INTERPRETER_PROGRAM_H #include "types.hpp" #include #include namespace Interpreter { struct Program { std::vector mInstructions; std::vector mIntegers; std::vector mFloats; std::vector mStrings; }; } #endif