Switch-Toolbox/Switch_Toolbox_Library/Interfaces/FileFormatting/ILeaveOpenOnLoad.cs

16 lines
325 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
/// <summary>
/// Allows an <see cref="IFileFormat"/> to keep it's stream open after being loaded
/// </summary>
public interface ILeaveOpenOnLoad
{
}
}