Files
2026-06-29 21:18:33 +08:00

22 lines
218 B
C++

#pragma once
#include "InterpreterDefs.h"
namespace hybridclr
{
namespace interpreter
{
class Interpreter
{
public:
static void Execute(const MethodInfo* methodInfo, StackObject* args, void* ret);
};
}
}