1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-07-01 08:26:36 +02:00
MLEM/MLEM/Formatting/FormatSettings.cs

15 lines
424 B
C#
Raw Normal View History

using Microsoft.Xna.Framework;
namespace MLEM.Formatting {
public class FormatSettings {
public static readonly FormatSettings Default = new FormatSettings();
2019-12-26 19:38:54 +01:00
public float WobbleModifier = 5;
public float WobbleHeightModifier = 1 / 8F;
public float TypingSpeed = 20;
public Color DropShadowColor = Color.Black;
public Vector2 DropShadowOffset = new Vector2(2);
}
}