You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
422 B
20 lines
422 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
using Sog;
|
|
using ProtoCSStruct;
|
|
using Sog.Gate;
|
|
|
|
namespace Chat
|
|
{
|
|
//现在还不支持多个,到时候看是用game的还是account的
|
|
public static class ChatServerRoute
|
|
{
|
|
public static bool CheckAndRoute(PlayerOnChat player, StructPacket packet)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|