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

16 lines
403 B
C#

using System;
namespace RecrownedAthenaeum.UI.Skin.Definitions
{
/// <summary>
/// A definition containing the data for the skin system. Should be in data transfer object model.
/// </summary>
public interface ISkinDefinitionData
{
/// <summary>
/// The module type this definition is definining.
/// </summary>
Type UIModuleType { get; }
}
}