mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
16 lines
256 B
C++
Executable file
16 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
|