ddon-server/Arrowgene.Ddon.GameServer/Scripting/Interfaces/IAddendum.cs
Paul Campbell ff461605e2 feat: Script addendum support
Added the ability to define fine grained edits of server script files
without changing the originals.
2025-02-24 13:34:54 -05:00

7 lines
147 B
C#

namespace Arrowgene.Ddon.GameServer.Scripting.Interfaces
{
public abstract class IAddendum
{
public abstract void Amend();
}
}