Files
ReshadePluginsAddon/includes/GameInformations.h
2026-02-01 21:51:08 +01:00

16 lines
323 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;
float Health;
bool consoleEnabled;
};
typedef void(*GetGameInfosStruct)(GameInfos*);