示例#1
0
 internal DiscordActivity(DiscordActivity other)
 {
     Name         = other.Name;
     ActivityType = other.ActivityType;
     StreamUrl    = other.StreamUrl;
     RichPresence = new DiscordRichPresence(other.RichPresence);
 }
示例#2
0
 internal DiscordActivity(DiscordActivity other)
 {
     this.Name         = other.Name;
     this.ActivityType = other.ActivityType;
     this.StreamUrl    = other.StreamUrl;
     this.RichPresence = new DiscordRichPresence(other.RichPresence);
     this.CustomStatus = new DiscordCustomStatus(other.CustomStatus);
 }