12 lines
No EOL
270 B
C#
12 lines
No EOL
270 B
C#
using System.Threading.Tasks;
|
|
using WingsEmu.Game.Networking;
|
|
using WingsEmu.Game.Quests.Event;
|
|
|
|
namespace WingsEmu.Game.Quests;
|
|
|
|
public interface IRunScriptHandler
|
|
{
|
|
public int[] RunIds { get; }
|
|
|
|
Task ExecuteAsync(IClientSession session, RunScriptEvent e);
|
|
} |