Files
PowerToys/Wox.Core/Theme/ITheme.cs

11 lines
188 B
C#
Raw Normal View History

2015-10-30 23:17:34 +00:00
using System.Collections.Generic;
namespace Wox.Core.Theme
{
interface ITheme
{
void ChangeTheme(string themeName);
List<string> LoadAvailableThemes();
}
}