add Lego3DManager and related, fix a function signature

This commit is contained in:
Christian Semmler
2023-06-18 13:45:39 +02:00
parent 5c74ddc9ab
commit 30989aec9c
6 changed files with 50 additions and 12 deletions

17
LEGO1/lego3dmanager.h Executable file
View File

@@ -0,0 +1,17 @@
#ifndef LEGO3DMANAGER_H
#define LEGO3DMANAGER_H
#include "lego3dview.h"
class Lego3DManager
{
public:
inline Lego3DView *GetLego3DView() { return this->m_3dView; }
private:
int m_unk00;
int m_unk04;
Lego3DView *m_3dView;
};
#endif // LEGO3DMANAGER_H