Dalamud/Dalamud/Fixes/IGameFix.cs
2022-05-26 01:43:10 +02:00

14 lines
253 B
C#

using System;
namespace Dalamud.Fixes;
/// <summary>
/// Base interface to be implemented by game fixes.
/// </summary>
internal interface IGameFix
{
/// <summary>
/// Apply the patch to the game.
/// </summary>
public void Apply();
}