recrownedathenaeum/RecrownedAthenaeum/UI/Skin/Definitions/ISkinDefinition.cs
2019-01-14 00:34:35 -06:00

16 lines
338 B
C#

using System;
namespace RecrownedAthenaeum.UI.Skin.Definitions
{
/// <summary>
/// A definition for the skin system.
/// </summary>
public interface ISkinDefinition
{
/// <summary>
/// The module type this definition is definining.
/// </summary>
Type UIModuleType { get; }
}
}