naps2/NAPS2.Core/IFormFactory.cs

14 lines
229 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using NAPS2.WinForms;
namespace NAPS2
{
public interface IFormFactory
{
T Create<T>() where T : FormBase;
}
}