reorganized repo, implemented mxcore

This commit is contained in:
itsmattkc
2023-05-05 02:54:17 -07:00
parent 1690784a8b
commit d4e2fb8d8a
54 changed files with 958 additions and 243 deletions

15
LEGO1/mxomni.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef MXOMNI_H
#define MXOMNI_H
class MxOmni
{
public:
__declspec(dllexport) static const char *GetHD();
__declspec(dllexport) static const char *GetCD();
__declspec(dllexport) static void SetHD(const char *s);
__declspec(dllexport) static void SetCD(const char *s);
__declspec(dllexport) static void SetSound3D(unsigned char param_1);
__declspec(dllexport) static void DestroyInstance();
};
#endif // MXOMNI_H