250501 커밋
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using GameServer.Contents.GameMode.Manage;
|
||||
using ServerCommon;
|
||||
using ServerCore;
|
||||
|
||||
namespace GameServer.Contents.GameMode.Mode_Running.Manage;
|
||||
|
||||
public class RunAdventureJoinHandler : GameModeJoinHandlerBase
|
||||
{
|
||||
public RunAdventureJoinHandler(InstanceRoom instanceRoom) : base(instanceRoom, GameModeType.RUN_ADV)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public override Result gamedModeInstanceJoinValidate()
|
||||
{
|
||||
var result = new Result();
|
||||
return result;
|
||||
}
|
||||
|
||||
public override Result gamedModeInstanceJoin(Player player)
|
||||
{
|
||||
Log.getLogger().debug("run race gamedModeInstanceJoin called");
|
||||
|
||||
var result = new Result();
|
||||
string err_msg = string.Empty;
|
||||
|
||||
Log.getLogger().debug("run race gamedModeInstanceJoin done");
|
||||
return result;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user