isle/LEGO1/viewmanager/viewmanager.h

19 lines
366 B
C
Raw Normal View History

#ifndef VIEWMANAGER_H
#define VIEWMANAGER_H
2024-01-10 17:40:24 -05:00
#include "viewroi.h"
2023-06-18 08:02:16 -04:00
2024-01-10 17:40:24 -05:00
// VTABLE: LEGO1 0x100dbd88
// SIZE 0x1bc
2023-10-24 19:38:27 -04:00
class ViewManager {
public:
2024-01-10 17:40:24 -05:00
ViewManager(Tgl::Group* scene, const OrientableROI* point_of_view);
virtual ~ViewManager();
2023-10-24 19:38:27 -04:00
__declspec(dllexport) void RemoveAll(ViewROI*);
2024-01-10 17:40:24 -05:00
void SetPOVSource(const OrientableROI* point_of_view);
};
#endif // VIEWMANAGER_H