コード例 #1
0
ファイル: Chat.cs プロジェクト: Herhangi/HerhangiOT
        public static bool SendChannelMessage(ushort channelId, SpeakTypes type, string message)
        {
            ChatChannel channel = GetChannelById(channelId);

            if (channel == null)
            {
                return(false);
            }

            channel.SendToAll(message, type);
            return(true);
        }