using System; namespace RecrownedAthenaeum.UI.Skin.Definitions { /// /// A definition for the skin system. /// public interface ISkinDefinition { /// /// The module type this definition is definining. /// Type UIModuleType { get; } } }