Initial Commit

This commit is contained in:
DavidOnTop 2024-01-20 13:52:41 +01:00
commit d2176afff9
No known key found for this signature in database
GPG key ID: FAB914DDC2F180EB
23 changed files with 778 additions and 0 deletions

View file

@ -0,0 +1,7 @@
namespace CruelMan.Modules.Settings {
public abstract class NumberSetting : Setting {
public abstract float Value { get; set; }
public abstract float Min {get; set; }
public abstract float Max {get;set;}
}
}