mirror of
https://github.com/isledecomp/isle.git
synced 2025-02-16 19:50:15 -05:00
16 lines
310 B
C++
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
|