using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterStudio.Core;
using RainmeterStudio.Core.Documents;
using RainmeterStudio.Core.Model;
namespace RainmeterStudio.SkinDesignerPlugin
{
///
/// Template of a skin which will be opened in the designer
///
[PluginExport]
public class SkinDocumentTemplate : DocumentTemplate
{
///
/// Initializes this skin template
///
public SkinDocumentTemplate()
: base("Skin", "ini")
{
}
///
/// Creates a new document using this template
///
/// Newly created document
public override IDocument CreateDocument()
{
return new SkinDocument();
}
}
}