mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 08:41:16 +00:00
20 lines
343 B
C++
20 lines
343 B
C++
#ifndef LEGO3DVIEW_H
|
|
#define LEGO3DVIEW_H
|
|
|
|
#include "mxtypes.h"
|
|
#include "viewmanager/viewmanager.h"
|
|
|
|
class LegoROI;
|
|
|
|
class Lego3DView {
|
|
public:
|
|
inline ViewManager* GetViewManager() { return this->m_viewManager; }
|
|
LegoROI* PickROI(MxLong p_a, MxLong p_b);
|
|
|
|
private:
|
|
char m_pad[0x88];
|
|
ViewManager* m_viewManager;
|
|
};
|
|
|
|
#endif // LEGO3DVIEW_H
|