mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
279d626279
This declares a bunch of classes and functions for us, as well as fixes some declarations that were slightly incorrect (e.g. missing "virtual", etc)
13 lines
337 B
C++
Executable file
13 lines
337 B
C++
Executable file
#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
|