mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
18 lines
262 B
C
18 lines
262 B
C
|
#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
|