Example #1
0
 public DiscordProfile()
 {
     OnClientUpdated += (sender, e) =>
     {
         User.SetClient(Client);
         ConnectedAccounts.SetClientsInList(Client);
     };
 }
Example #2
0
        public GuildMemberUpdate()
        {
            Member = new GuildMember();

            OnClientUpdated += (sender, e) =>
            {
                User.SetClient(Client);
                Member.SetClient(Client);
            };
        }
Example #3
0
 public DiscordBan()
 {
     OnClientUpdated += (sender, e) => User.SetClient(Client);
 }
Example #4
0
 public GuildMember()
 {
     OnClientUpdated += (sender, e) => User.SetClient(Client);
 }
Example #5
0
 public DiscordRelationship()
 {
     OnClientUpdated += (sender, e) => User.SetClient(Client);
 }
Example #6
0
 public Profile()
 {
     OnClientUpdated += (sender, e) => User.SetClient(Client);
 }