Removed font section.

This commit is contained in:
2019-01-15 19:34:02 -06:00
parent cc0203f111
commit 203f251df6
2 changed files with 17 additions and 29 deletions

View File

@@ -20,10 +20,7 @@ namespace RecrownedAthenaeum.UI.Skin
/// Colors stored in this skin.
/// </summary>
public readonly Dictionary<string, Color> colors;
/// <summary>
/// Fonts stored in this skin.
/// </summary>
public readonly Dictionary<string, SpriteFont> fonts;
Dictionary<Type, Dictionary<string, ISkinDefinitionData>> definitions;
/// <summary>
@@ -34,7 +31,6 @@ namespace RecrownedAthenaeum.UI.Skin
{
this.textureAtlas = textureAtlas;
colors = new Dictionary<string, Color>();
fonts = new Dictionary<string, SpriteFont>();
definitions = new Dictionary<Type, Dictionary<string, ISkinDefinitionData>>();
}