PowerToys/Wox.Core/Theme/ITheme.cs
2015-10-30 23:23:01 +00:00

11 lines
188 B
C#

using System.Collections.Generic;
namespace Wox.Core.Theme
{
interface ITheme
{
void ChangeTheme(string themeName);
List<string> LoadAvailableThemes();
}
}