mirror of
https://github.com/sebastian-heinz/Arrowgene.DragonsDogmaOnline
synced 2026-08-03 11:12:41 -04:00
Added the ability to define fine grained edits of server script files without changing the originals.
7 lines
147 B
C#
7 lines
147 B
C#
namespace Arrowgene.Ddon.GameServer.Scripting.Interfaces
|
|
{
|
|
public abstract class IAddendum
|
|
{
|
|
public abstract void Amend();
|
|
}
|
|
}
|