mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 18:22:20 +00:00
26 lines
379 B
C++
26 lines
379 B
C++
class CMono;
|
|
|
|
#ifndef _CMONO
|
|
#define _CMONO
|
|
|
|
#include "CMonoClass.h"
|
|
#include "CMonoObject.h"
|
|
#include "CMonoAssembly.h"
|
|
|
|
class CMono
|
|
{
|
|
private:
|
|
MonoDomain *m_pMonoDomain;
|
|
|
|
public:
|
|
CMono();
|
|
~CMono();
|
|
|
|
bool Init( const char* szVersion );
|
|
void AddInternals();
|
|
bool Load( const char * szFilePath );
|
|
|
|
static void Test( MonoObject* vector );
|
|
};
|
|
|
|
#endif |