Exemple #1
0
 internal static RpcMessage Create(DiscordRpcClient discord, ulong channelId, Model model)
 {
     //model.ChannelId is always 0, needs to be passed from the event
     if (model.Type == MessageType.Default)
     {
         return(RpcUserMessage.Create(discord, channelId, model));
     }
     else
     {
         return(RpcSystemMessage.Create(discord, channelId, model));
     }
 }