16 lines
403 B
C#
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; }
|
|
}
|
|
}
|