mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-22 16:04:17 +00:00
17 lines
256 B
C++
Executable File
17 lines
256 B
C++
Executable File
#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
|