250501 커밋
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
using GameServer.Contents.GameMode.Manage.LeaveManage;
|
||||
using GameServer.Contents.GameMode.Manage.PlayManage;
|
||||
using ServerCommon;
|
||||
|
||||
namespace GameServer.Contents.GameMode.Mode_Running.Manage;
|
||||
|
||||
public class RunAdventureLeaveHandler : GameModeLeaveHandlerBase
|
||||
{
|
||||
public RunAdventureLeaveHandler(Player player, string roomId) : base(player, roomId, GameModeType.RUN_ADV)
|
||||
{
|
||||
}
|
||||
|
||||
public override async Task<Result> postLeave(IGameMode gameMode)
|
||||
{
|
||||
var result = new Result();
|
||||
|
||||
await Task.CompletedTask;
|
||||
return new Result();
|
||||
}
|
||||
|
||||
public override async Task<Result> notifyAfterLeave(IGameMode gameMode)
|
||||
{
|
||||
var result = new Result();
|
||||
|
||||
await Task.CompletedTask;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
public override async Task<Result> logAfterLeave(IGameMode gameMode)
|
||||
{
|
||||
var result = new Result();
|
||||
|
||||
await Task.CompletedTask;
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user