コード例 #1
0
ファイル: PlayerEntity.cs プロジェクト: LiveMC/SharpMC
 public void SendChat(string message, ChatColor color)
 {
     SendChat("§" + color.Value + message);
 }
コード例 #2
0
ファイル: PlayerUtils.cs プロジェクト: LiveMC/SharpMC
 public static void SendChatMessage(Player player, string message, ChatColor color)
 {
     player.SendChat(message, color);
 }