From 55f2560fd556eb423da14f7552fb3f2cd41c88d3 Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Sun, 22 Feb 2026 11:39:11 +0100 Subject: [PATCH] Add screen resolution and aspect ratio informations --- includes/GameInformations.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/GameInformations.h b/includes/GameInformations.h index 3c771dc..70ee316 100644 --- a/includes/GameInformations.h +++ b/includes/GameInformations.h @@ -2,6 +2,9 @@ // Shared structure values with Core dll struct GameInfos { + int screenWidth; + int screenHeight; + float aspectRatio; float FOVIn; float CompensatedFOV; float FOVOut;