mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-10 04:42:38 +01:00
20 lines
228 B
C++
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
|