9 lines
240 B
C#
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
|
|
{
|
|
}
|