naps2/NAPS2.Core/WinForms/IFormFactory.cs

12 lines
188 B
C#

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