mirror of https://github.com/OpenMW/openmw.git
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.
21 lines
397 B
C++
21 lines
397 B
C++
2 years ago
|
#ifndef OPENMW_COMPONENTS_INTERPRETER_PROGRAM_H
|
||
|
#define OPENMW_COMPONENTS_INTERPRETER_PROGRAM_H
|
||
|
|
||
|
#include "types.hpp"
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace Interpreter
|
||
|
{
|
||
|
struct Program
|
||
|
{
|
||
|
std::vector<Type_Code> mInstructions;
|
||
|
std::vector<Type_Integer> mIntegers;
|
||
|
std::vector<Type_Float> mFloats;
|
||
|
std::vector<std::string> mStrings;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|