diff options
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; } = "";
}
}
|