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