2023-09-01 00:24:32 +00:00
|
|
|
using System.ComponentModel;
|
|
|
|
using UnityModManagerNet;
|
|
|
|
using static dumb282tweaks.Settings;
|
|
|
|
|
|
|
|
namespace dumb282tweaks;
|
|
|
|
|
|
|
|
public static class Settings {
|
|
|
|
public enum CabType {
|
|
|
|
[Description("Default 282 Cab")]
|
|
|
|
Default,
|
|
|
|
[Description("German Cab")]
|
|
|
|
German
|
|
|
|
}
|
|
|
|
public enum BoilerType {
|
|
|
|
[Description("Default Boiler")]
|
|
|
|
Default,
|
|
|
|
[Description("Streamlined Boiler")]
|
|
|
|
Streamlined,
|
|
|
|
}
|
|
|
|
public enum SmokeDeflectorType {
|
|
|
|
[Description("No Smoke Deflectors")]
|
|
|
|
None,
|
|
|
|
[Description("Witte Smoke Deflectors")]
|
|
|
|
Witte,
|
|
|
|
[Description("Wagner Smoke Deflectors")]
|
|
|
|
Wagner,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class dumb282tweaksSettings : UnityModManager.ModSettings {
|
2023-11-12 18:47:12 +00:00
|
|
|
// public CabType cabType = CabType.Default;
|
2023-09-01 00:24:32 +00:00
|
|
|
public SmokeDeflectorType smokeDeflectorType = SmokeDeflectorType.Wagner;
|
2023-11-12 18:47:12 +00:00
|
|
|
public BoilerType boilerType = BoilerType.Default;
|
2023-09-01 00:24:32 +00:00
|
|
|
|
|
|
|
public override void Save(UnityModManager.ModEntry modEntry) {
|
|
|
|
Save(this, modEntry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|