15 lines
305 B
C
15 lines
305 B
C
#pragma once
|
|
|
|
// Shared structure values with Core dll
|
|
struct GameInfos {
|
|
float FOVIn;
|
|
float CompensatedFOV;
|
|
float FOVOut;
|
|
float cameraIn;
|
|
float cameraOut;
|
|
float defaultFogDensity;
|
|
float fogMaxOpacity;
|
|
bool consoleEnabled;
|
|
};
|
|
|
|
typedef void(*GetGameInfosStruct)(GameInfos*); |