summaryrefslogtreecommitdiff
path: root/Config.cs
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2025-06-03 10:17:33 -0400
committerAndrew Opalach <andrew@akon.city> 2025-06-03 10:17:33 -0400
commita9d16fd96dd6e9db075d6a5458ab7f72ca733715 (patch)
treed1b3e2fc39318b77d6059b0ac15d1b364d92f5bc /Config.cs
parent4572387d311de9549ab7396160d675e538935def (diff)
downloadNewCamera-a9d16fd96dd6e9db075d6a5458ab7f72ca733715.tar.gz
NewCamera-a9d16fd96dd6e9db075d6a5458ab7f72ca733715.tar.bz2
NewCamera-a9d16fd96dd6e9db075d6a5458ab7f72ca733715.zip
Scan for addresses, use ImGui DragFloats
Diffstat (limited to 'Config.cs')
-rwxr-xr-xConfig.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Config.cs b/Config.cs
index 481f8b2..ade6564 100755
--- a/Config.cs
+++ b/Config.cs
@@ -77,14 +77,14 @@ namespace MHWNewCamera
public float Roll { get; set; }
}
- public string Name => "MHWNewCamera";
- public string Version => "1.0.0";
+ public String Name => "MHWNewCamera";
+ public String Version => "1.0.0";
public Binds KeyboardBinds { get; set; } = new Binds();
public Settings CameraSettings { get; set; } = new Settings();
public bool KeyboardEnabled { get; set; } = false;
public bool PerspectiveCameraEnabled { get; set; } = false;
- public Dictionary<string, Preset> Presets { get; set; } = new Dictionary<string, Preset>();
- public string Selected { get; set; } = "";
+ public Dictionary<String, Preset> Presets { get; set; } = new Dictionary<String, Preset>();
+ public String Selected { get; set; } = "";
}
}