1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-10 04:42:38 +01:00
openrw/rwengine/include/script/OpcodesVM.hpp
2014-08-01 00:33:38 +01:00

20 lines
228 B
C++

#pragma once
#ifndef _OPCODESVM_HPP_
#define _OPCODESVM_HPP_
#include <script/ScriptTypes.hpp>
namespace Opcodes {
struct VM {
static VM& get() {
static VM vm;
return vm;
}
VM();
SCMMicrocodeTable codes;
};
}
#endif