recrownedathenaeum/RecrownedAthenaeum/UI/Skin/Definitions/ISkinDefinition.cs

16 lines
338 B
C#
Raw Normal View History

2018-12-11 07:12:34 +00:00
using System;
namespace RecrownedAthenaeum.UI.Skin.Definitions
{
2019-01-14 06:34:35 +00:00
/// <summary>
/// A definition for the skin system.
/// </summary>
2018-12-11 07:12:34 +00:00
public interface ISkinDefinition
{
2019-01-14 06:34:35 +00:00
/// <summary>
/// The module type this definition is definining.
/// </summary>
2018-12-11 07:12:34 +00:00
Type UIModuleType { get; }
}
}