16 lines
403 B
C#
Raw Normal View History

2018-12-11 01:12:34 -06:00
using System;
namespace RecrownedAthenaeum.UI.Skin.Definitions
{
2019-01-14 00:34:35 -06:00
/// <summary>
2019-01-15 17:03:17 -06:00
/// A definition containing the data for the skin system. Should be in data transfer object model.
2019-01-14 00:34:35 -06:00
/// </summary>
2019-01-15 17:03:17 -06:00
public interface ISkinDefinitionData
2018-12-11 01:12:34 -06:00
{
2019-01-14 00:34:35 -06:00
/// <summary>
/// The module type this definition is definining.
/// </summary>
2018-12-11 01:12:34 -06:00
Type UIModuleType { get; }
}
}