From 32d70926db4c2477a99b8da25ef9d82a31dcf6d4 Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Mon, 29 Sep 2025 11:59:24 +0200 Subject: [PATCH] Add game informations include --- external/includes/GameInformations.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 external/includes/GameInformations.h diff --git a/external/includes/GameInformations.h b/external/includes/GameInformations.h new file mode 100644 index 0000000..8b34797 --- /dev/null +++ b/external/includes/GameInformations.h @@ -0,0 +1,10 @@ +#pragma once + +// Shared structure values with Core dll +struct GameInfos { + float FOVIn; + float FOVOut; + float cameraIn; + float cameraOut; + bool consoleEnabled; +};