isle-portable/LEGO1/realtime/realtimeview.h
Christian Semmler 05965f5357
Implement/match ViewManager ctor/dtor/structure (#614)
* Implement/match ViewManager constructor/structure

* Add dtor
2024-03-02 15:43:19 +01:00

16 lines
310 B
C++

#ifndef REALTIMEVIEW_H
#define REALTIMEVIEW_H
class RealtimeView {
public:
RealtimeView();
~RealtimeView();
static float GetPartsThreshold();
static float GetUserMaxLOD();
static void SetPartsThreshold(float);
static void UpdateMaxLOD();
static void SetUserMaxLOD(float);
};
#endif // REALTIMEVIEW_H