mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-16 18:53:12 +01:00
16 lines
No EOL
461 B
C#
16 lines
No EOL
461 B
C#
using Microsoft.Xna.Framework;
|
|
using MLEM.Misc;
|
|
|
|
namespace MLEM.Formatting {
|
|
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);
|
|
|
|
}
|
|
} |