mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
17 lines
256 B
C
17 lines
256 B
C
|
#ifndef LEGO3DVIEW_H
|
||
|
#define LEGO3DVIEW_H
|
||
|
|
||
|
#include "viewmanager.h"
|
||
|
|
||
|
class Lego3DView
|
||
|
{
|
||
|
public:
|
||
|
inline ViewManager *GetViewManager() { return this->m_viewManager; }
|
||
|
|
||
|
private:
|
||
|
char unknown[0x88];
|
||
|
ViewManager *m_viewManager;
|
||
|
};
|
||
|
|
||
|
#endif // LEGO3DVIEW_H
|