Fix structure of Lego3DView (#422)

This commit is contained in:
Christian Semmler
2024-01-10 17:40:24 -05:00
committed by GitHub
parent b996fff6fa
commit 9eea48f629
4 changed files with 31 additions and 10 deletions

View File

@@ -1,11 +1,18 @@
#ifndef VIEWMANAGER_H
#define VIEWMANAGER_H
class ViewROI;
#include "viewroi.h"
// VTABLE: LEGO1 0x100dbd88
// SIZE 0x1bc
class ViewManager {
public:
ViewManager(Tgl::Group* scene, const OrientableROI* point_of_view);
virtual ~ViewManager();
__declspec(dllexport) void RemoveAll(ViewROI*);
void SetPOVSource(const OrientableROI* point_of_view);
};
#endif // VIEWMANAGER_H