コード例 #1
0
 public ChatRestricted(ChatRestrictionType reason) : base(ServerOpcodes.ChatRestricted)
 {
     Reason = reason;
 }
コード例 #2
0
ファイル: ChatHandler.cs プロジェクト: lOlbas/CypherCore
 void SendChatRestricted(ChatRestrictionType restriction)
 {
     SendPacket(new ChatRestricted(restriction));
 }