12 lines
225 B
C
12 lines
225 B
C
#pragma once
|
|
|
|
// Shared structure values with Core dll
|
|
struct GameInfos {
|
|
float FOVIn;
|
|
float FOVOut;
|
|
float cameraIn;
|
|
float cameraOut;
|
|
bool consoleEnabled;
|
|
};
|
|
|
|
typedef void(*GetGameInfosStruct)(GameInfos*); |