mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 21:41:51 +02:00
Refactoring. Move system plugins to seperate DLLs.
This commit is contained in:
13
Wox.Core/Theme/ITheme.cs
Normal file
13
Wox.Core/Theme/ITheme.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user