예제 #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);
        }