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