mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
14 lines
351 B
C#
14 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Game.Rogue.Event
|
|
{
|
|
public abstract class RogueEventCostHandler
|
|
{
|
|
public abstract void Handle(BaseRogueInstance rogue, RogueEventInstance? eventInstance, List<int> ParamList);
|
|
}
|
|
}
|