openmw/components/interpreter/runtime.cpp

23 lines
382 B
C++
Raw Normal View History

2010-06-28 19:20:45 +02:00
#include "runtime.hpp"
namespace Interpreter
{
Runtime::Runtime (Context& context) : mContext (context), mCode (0) {}
void Runtime::configure (const Interpreter::Type_Code *code, int codeSize)
{
clear();
mCode = code;
mCodeSize = codeSize;
}
void Runtime::clear()
{
mCode = 0;
mCodeSize = 0;
}
}