mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
64d2b9e02b
* lego: implement LegoNavController::SetControlMax and related * use MxResult * fix name
24 lines
597 B
C++
24 lines
597 B
C++
#ifndef LEGOVIDEOMANAGER_H
|
|
#define LEGOVIDEOMANAGER_H
|
|
|
|
#include "mxvideomanager.h"
|
|
#include "lego3dmanager.h"
|
|
|
|
class LegoVideoManager : public MxVideoManager
|
|
{
|
|
public:
|
|
__declspec(dllexport) int EnableRMDevice();
|
|
__declspec(dllexport) int DisableRMDevice();
|
|
__declspec(dllexport) void EnableFullScreenMovie(unsigned char a, unsigned char b);
|
|
__declspec(dllexport) void MoveCursor(int x, int y);
|
|
|
|
inline Lego3DManager *Get3DManager() { return this->m_3dManager; }
|
|
|
|
int m_unk64;
|
|
Lego3DManager *m_3dManager;
|
|
int m_unk6c;
|
|
int m_unk70;
|
|
int *m_unk74;
|
|
};
|
|
|
|
#endif // LEGOVIDEOMANAGER_H
|