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