1
0
mirror of synced 2024-11-28 09:20:57 +01:00
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
{
}
}