From 324055d82e2166b55069418529b76311c782eb00 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Thu, 26 Dec 2019 19:38:54 +0100 Subject: [PATCH] bleh --- MLEM/Formatting/FormatSettings.cs | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/MLEM/Formatting/FormatSettings.cs b/MLEM/Formatting/FormatSettings.cs index c47892c..96db82a 100644 --- a/MLEM/Formatting/FormatSettings.cs +++ b/MLEM/Formatting/FormatSettings.cs @@ -5,19 +5,11 @@ namespace MLEM.Formatting { public static readonly FormatSettings Default = new FormatSettings(); - public float WobbleModifier; - public float WobbleHeightModifier; - public float TypingSpeed; - public Color DropShadowColor; - public Vector2 DropShadowOffset; - - public FormatSettings() { - this.WobbleModifier = 5; - this.WobbleHeightModifier = 1 / 8F; - this.TypingSpeed = 20; - this.DropShadowColor = Color.Black; - this.DropShadowOffset = new Vector2(2); - } + public float WobbleModifier = 5; + public float WobbleHeightModifier = 1 / 8F; + public float TypingSpeed = 20; + public Color DropShadowColor = Color.Black; + public Vector2 DropShadowOffset = new Vector2(2); } } \ No newline at end of file