mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 04:56:13 +00:00
9 lines
160 B
C#
9 lines
160 B
C#
namespace PckStudio.Interfaces
|
|
{
|
|
public interface ISaveContext<T>
|
|
{
|
|
public bool AutoSave { get; }
|
|
|
|
public void Save(T value);
|
|
}
|
|
} |