Added Theme Editor window and added to Tools menu

This commit is contained in:
Ben
2015-06-26 10:17:32 +01:00
parent cc05945108
commit aa5cedcbba
22 changed files with 199 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
using Filtration.Interface;
namespace Filtration.ThemeEditor.ViewModels
{
public interface IThemeEditorViewModel : IDocument
{
}
public class ThemeEditorViewModel : IThemeEditorViewModel
{
public bool IsScript { get { return false; }}
public string Title { get { return "Theme Editor"; } }
}
}