#ifndef SCRIPT_H #define SCRIPT_H #include "../data/ArrayList.h" #include "../data/Stack.h" #include "Data.h" #include "Instruction.h" #include using namespace std; class Script { public: Script(); virtual ~Script(); void execute(); ArrayList& getInstructions(); private: ArrayList instructions; Stack> dataStack; }; #endif