2018-12-11 07:12:34 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2019-01-27 23:39:18 +00:00
|
|
|
|
namespace RecrownedAthenaeum.UI.SkinSystem.Definitions
|
2018-12-11 07:12:34 +00:00
|
|
|
|
{
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// <summary>
|
2019-01-15 23:03:17 +00:00
|
|
|
|
/// A definition containing the data for the skin system. Should be in data transfer object model.
|
2019-01-14 06:34:35 +00:00
|
|
|
|
/// </summary>
|
2019-01-15 23:03:17 +00:00
|
|
|
|
public interface ISkinDefinitionData
|
2018-12-11 07:12:34 +00:00
|
|
|
|
{
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|