37 lines
750 B
C#
37 lines
750 B
C#
using Google.Protobuf;
|
|
using Google.Protobuf.WellKnownTypes;
|
|
|
|
|
|
using ServerCore;
|
|
using ServerBase;
|
|
using ServerCommon;
|
|
using ServerCommon.BusinessLogDomain;
|
|
using MetaAssets;
|
|
|
|
|
|
namespace GameServer;
|
|
|
|
public class ArcadeRunningInstanceInitHandler : GameModeInitHandlerBase
|
|
{
|
|
public ArcadeRunningInstanceInitHandler(InstanceRoom instanceRoom) : base(instanceRoom, EPlaceType.ArcadeRunning)
|
|
{
|
|
}
|
|
|
|
public override Result gamedModeInstanceInitValidate()
|
|
{
|
|
var result = new Result();
|
|
|
|
//kihoon todo : running 추가
|
|
|
|
return result;
|
|
}
|
|
|
|
public override Result gamedModeInstanceInit()
|
|
{
|
|
var result = new Result();
|
|
//kihoon todo : running 추가
|
|
|
|
return result;
|
|
}
|
|
|
|
} |