openmw-tes3coop/components/interpreter/interpreter.cpp
2010-06-28 19:20:45 +02:00

22 lines
359 B
C++

#include "interpreter.hpp"
namespace Interpreter
{
Interpreter::Interpreter (Context& context)
: mRuntime (context)
{}
Interpreter::~Interpreter()
{
}
void Interpreter::run (const Type_Code *code, int codeSize)
{
mRuntime.configure (code, codeSize);
mRuntime.clear();
}
}