1
0
mirror of synced 2024-11-28 01:10:51 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/FileFormatting/ILeaveOpenOnLoad.cs

16 lines
325 B
C#

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
{
}
}