2025-09-29 12:03:20 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
// Shared structure values with Core dll
|
|
|
|
|
struct GameInfos {
|
|
|
|
|
float FOVIn;
|
2025-10-11 22:21:12 +02:00
|
|
|
float CompensatedFOV;
|
2025-09-29 12:03:20 +02:00
|
|
|
float FOVOut;
|
|
|
|
|
float cameraIn;
|
|
|
|
|
float cameraOut;
|
2025-10-01 14:05:52 +02:00
|
|
|
float defaultFogDensity;
|
|
|
|
|
float fogMaxOpacity;
|
2025-09-29 12:03:20 +02:00
|
|
|
bool consoleEnabled;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef void(*GetGameInfosStruct)(GameInfos*);
|