mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 17:19:56 +00:00
30 lines
535 B
C++
30 lines
535 B
C++
#ifndef INTERPRETER_OPCODES_H_INCLUDED
|
|
#define INTERPRETER_OPCODES_H_INCLUDED
|
|
|
|
namespace Interpreter
|
|
{
|
|
class Runtime;
|
|
|
|
/// opcode for 0 arguments
|
|
class Opcode0
|
|
{
|
|
public:
|
|
|
|
virtual void execute (Runtime& runtime) = 0;
|
|
|
|
virtual ~Opcode0() {}
|
|
};
|
|
|
|
/// opcode for 1 argument
|
|
class Opcode1
|
|
{
|
|
public:
|
|
|
|
virtual void execute (Runtime& runtime, unsigned int arg0) = 0;
|
|
|
|
virtual ~Opcode1() {}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|