isle-portable/LEGO1/realtime/realtimeview.h
Christian Semmler bee101b1f4
Add clang-tidy readability-redundant-inline-specifier (#1060)
* Add clang-tidy readability-redundant-inline-specifier

* fix

* Update CONTRIBUTING.md

* format

* fix
2024-07-05 01:06:32 +02:00

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