초기커밋
This commit is contained in:
27
GameServer/Contents/GameMode/Manage/GameRoomJoinHandler.cs
Normal file
27
GameServer/Contents/GameMode/Manage/GameRoomJoinHandler.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using ServerCommon;
|
||||
|
||||
|
||||
namespace GameServer;
|
||||
|
||||
public class GameRoomJoinHandler : GameModeJoinHandlerBase
|
||||
{
|
||||
public GameRoomJoinHandler(InstanceRoom instanceRoom) : base(instanceRoom, EPlaceType.GameRoom)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public override Result gamedModeInstanceJoinValidate(EPlaceType placeType)
|
||||
{
|
||||
var result = new Result();
|
||||
return result;
|
||||
}
|
||||
|
||||
public override Result gamedModeInstanceJoin(Player player)
|
||||
{
|
||||
var result = new Result();
|
||||
string err_msg = string.Empty;
|
||||
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user