mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
bee101b1f4
* Add clang-tidy readability-redundant-inline-specifier * fix * Update CONTRIBUTING.md * format * fix
20 lines
409 B
C++
20 lines
409 B
C++
#ifndef REALTIMEVIEW_H
|
|
#define REALTIMEVIEW_H
|
|
|
|
extern float g_userMaxLodPower;
|
|
|
|
class RealtimeView {
|
|
public:
|
|
RealtimeView();
|
|
~RealtimeView();
|
|
|
|
static float GetPartsThreshold();
|
|
static float GetUserMaxLOD();
|
|
static void SetPartsThreshold(float);
|
|
static void UpdateMaxLOD();
|
|
static void SetUserMaxLOD(float);
|
|
|
|
static float GetUserMaxLodPower() { return g_userMaxLodPower; }
|
|
};
|
|
|
|
#endif // REALTIMEVIEW_H
|