Switch-Toolbox/Switch_Toolbox_Library/Interfaces/IMainForm.cs
KillzXGaming 00e9c6506f A few fixes and additions
Files can be dragged out of and dropped within archives if adding is supported..
Fixed some archive issues with it updating, and removing improperly.
Adjustments to default transform bone settings for bfres to prevent any deform issues if a new skeleton is created.
2019-08-14 15:27:45 -04:00

16 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
/// <summary>
/// An interface specifically used for MainForm.cs for plugins to communicate to
/// </summary>
public interface IMainForm
{
void OpenFile(string FileName, bool InActiveEditor = false);
}
}