1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-01 04:43:37 +02:00
MLEM/MLEM/Formatting/Obsolete/FormatSettings.cs
2020-05-15 00:34:04 +02:00

18 lines
555 B
C#

using System;
using Microsoft.Xna.Framework;
using MLEM.Misc;
namespace MLEM.Formatting {
[Obsolete("Use the new text formatting system in MLEM.Formatting instead")]
public class FormatSettings : GenericDataHolder {
public static readonly FormatSettings Default = new FormatSettings();
public float WobbleModifier = 5;
public float WobbleHeightModifier = 1 / 8F;
public float TypingSpeed = 20;
public Color DropShadowColor = Color.Black;
public Vector2 DropShadowOffset = new Vector2(2);
}
}