Files
Nitrox/NitroxPatcher/Patches/IPersistentPatch.cs
2025-07-06 00:23:46 +02:00

9 lines
240 B
C#

namespace NitroxPatcher.Patches;
/// <summary>
/// A persistent patch is applied when the game is initializing and stays applied throughout the process' life time.
/// </summary>
public interface IPersistentPatch : INitroxPatch
{
}