forked from Krythom/MiniDebug
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSettings.cs
More file actions
37 lines (34 loc) · 1.19 KB
/
Copy pathSettings.cs
File metadata and controls
37 lines (34 loc) · 1.19 KB
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
34
35
36
37
using System;
namespace MiniDebug;
[Serializable]
public class Settings
{
public string showSpeed = "f1";
public string infiniteHealth = "f2";
public string infiniteSoul = "f3";
public string increaseLoadTime = "f5";
public string decreaseLoadTime = "f6";
public string toggleSuperslides = "f7";
public string cameraFollow = "f8";
public string transparentInv = "f9";
public string reloadSettings = "f12";
public string noclip = "[0]";
public string yeetLoadScreens = "[4]";
public string showHitboxes = "[5]";
public string createSaveState = "[7]";
public string createDetailedSaveState = "[6]";
public string loadSaveState = "[8]";
public string loadSaveStateDuped = "[9]";
public string kill = "[*]";
public string dupeRoom = "[+]";
public string zoomIn = "page up";
public string zoomOut = "page down";
public string resetZoom = "home";
public string hideVignette = "insert";
public string increaseTimeScale = "[";
public string decreaseTimeScale = "]";
public string resetTimeScale = "\\";
public string giveBadFloat = "f";
public string revealHiddenAreas = "r";
// public string _DEBUG = "y";
}