mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 08:41:16 +00:00
17 lines
300 B
C++
17 lines
300 B
C++
#ifndef LEGO3DMANAGER_H
|
|
#define LEGO3DMANAGER_H
|
|
|
|
#include "lego3dview.h"
|
|
|
|
class Lego3DManager {
|
|
public:
|
|
inline Lego3DView* GetLego3DView() { return this->m_3dView; }
|
|
|
|
private:
|
|
undefined4 m_unk0x00; // 0x00
|
|
undefined4 m_unk0x04; // 0x04
|
|
Lego3DView* m_3dView; // 0x08
|
|
};
|
|
|
|
#endif // LEGO3DMANAGER_H
|