isle-portable/LEGO1/realtime/realtimeview.h

21 lines
409 B
C
Raw Normal View History

#ifndef REALTIMEVIEW_H
#define REALTIMEVIEW_H
extern float g_userMaxLodPower;
2023-10-24 19:38:27 -04:00
class RealtimeView {
public:
RealtimeView();
~RealtimeView();
static float GetPartsThreshold();
static float GetUserMaxLOD();
static void SetPartsThreshold(float);
2023-10-24 19:38:27 -04:00
static void UpdateMaxLOD();
static void SetUserMaxLOD(float);
static float GetUserMaxLodPower() { return g_userMaxLodPower; }
};
#endif // REALTIMEVIEW_H