mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
13 lines
337 B
C++
13 lines
337 B
C++
#ifndef REALTIMEVIEW_H
|
|
#define REALTIMEVIEW_H
|
|
|
|
class RealtimeView
|
|
{
|
|
public:
|
|
__declspec(dllexport) static float GetPartsThreshold();
|
|
__declspec(dllexport) static float GetUserMaxLOD();
|
|
__declspec(dllexport) static void SetPartsThreshold(float);
|
|
__declspec(dllexport) static void SetUserMaxLOD(float);
|
|
};
|
|
|
|
#endif // REALTIMEVIEW_H
|