From 75353eb1ae200806af915596911b32dea4d9b539 Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Mon, 29 Sep 2025 12:03:20 +0200 Subject: [PATCH] Add game shared informations include --- includes/GameInformations.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 includes/GameInformations.h diff --git a/includes/GameInformations.h b/includes/GameInformations.h new file mode 100644 index 0000000..0188d03 --- /dev/null +++ b/includes/GameInformations.h @@ -0,0 +1,12 @@ +#pragma once + +// Shared structure values with Core dll +struct GameInfos { + float FOVIn; + float FOVOut; + float cameraIn; + float cameraOut; + bool consoleEnabled; +}; + +typedef void(*GetGameInfosStruct)(GameInfos*); \ No newline at end of file