Add game shared informations include

This commit is contained in:
2025-09-29 12:03:20 +02:00
parent a2fad9c942
commit 75353eb1ae

View File

@@ -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*);