mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 13:14:17 +01:00
14 lines
253 B
C#
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();
|
|
}
|