isle-portable/LEGO1/viewmanager/viewmanager.h

27 lines
605 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-13 14:58:10 -05:00
ViewManager(Tgl::Renderer* pRenderer, Tgl::Group* scene, const OrientableROI* point_of_view);
2024-01-10 17:40:24 -05:00
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);
2024-01-13 14:58:10 -05:00
void SetResolution(int width, int height);
void SetFrustrum(float fov, float front, float back);
// SYNTHETIC: LEGO1 0x100a6000
// ViewManager::`scalar deleting destructor'
2024-01-13 14:58:10 -05:00
private:
undefined m_pad[0x1b8];
};
#endif // VIEWMANAGER_H