mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
23 lines
382 B
C++
23 lines
382 B
C++
|
|
#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;
|
|
}
|
|
}
|
|
|