Create and implement IGenerate, IImport

This commit is contained in:
Matt Nadareski
2016-05-28 16:15:47 -07:00
parent 7a5826e64b
commit 07db29cfbf
9 changed files with 29 additions and 15 deletions

View File

@@ -0,0 +1,7 @@
namespace SabreTools.Helper
{
public interface IGenerate
{
bool Export();
}
}