Files
PowerToys/Wox.Core/Theme/ITheme.cs
2015-01-03 15:20:34 +08:00

14 lines
240 B
C#

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