10 lines
155 B
C#
Raw Normal View History

2018-12-11 01:12:34 -06:00
using System;
namespace RecrownedAthenaeum.UI.Skin.Definitions
{
public interface ISkinDefinition
{
Type UIModuleType { get; }
}
}