-
Notifications
You must be signed in to change notification settings - Fork 13
/
Settings.h
33 lines (31 loc) · 859 Bytes
/
Settings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once
struct Settings
{
static float fCameraSpeed;
static float fAddOverShoulderPosX;
static float fAddOverShoulderPozZ;
static float fAddOverShoulderPosY;
static float f1stZoom;
static float f3rdZoom;
static float fDragonZoom;
static float fMessagePosX;
static float fMessagePosY;
static float fHumanCamOffsetX;
static float fHumanCamOffsetY;
static float fHumanCamOffsetZ;
static float fCreatureCamOffsetX;
static float fCreatureCamOffsetY;
static float fCreatureCamOffsetZ;
static int uLetterBoxThickness;
static int uLetterBoxSpeed;
static bool bLockOn;
static bool bForceFirstPerson;
static bool bSmoothTransition;
static bool bSwitchTarget;
static bool bForceThirdPerson;
static bool bHeadTracking;
static bool bConversationHT;
static bool bLetterBox;
static bool bHideDialogueMenu;
static void Load();
};