began working on skin system.

This commit is contained in:
2018-12-11 01:12:34 -06:00
parent f3bfba0045
commit dd768ac751
5 changed files with 125 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.UI.Skin.Definitions
{
public interface ISkinDefinition
{
Type UIModuleType { get; }
}
}