コード例 #1
0
ファイル: WelcomeScreen.cs プロジェクト: skizap/Anarchy
 public WelcomeScreen()
 {
     OnClientUpdated += (s, e) =>
     {
         Channels.SetClientsInList(Client);
     };
 }
コード例 #2
0
 public DiscordTemplateGuild()
 {
     OnClientUpdated += (sender, e) =>
     {
         Roles.SetClientsInList(Client);
         Channels.SetClientsInList(Client);
     };
 }
コード例 #3
0
 public DiscordTemplateGuild()
 {
     OnClientUpdated += (sender, e) =>
     {
         Roles.SetClientsInList(Client);
         Channels.SetClientsInList(Client);
     };
     JsonUpdated += (sender, json) =>
     {
         Channels = json.Value <JArray>("channels").PopulateListJson <GuildChannel>();
     };
 }
コード例 #4
0
ファイル: SocketGuild.cs プロジェクト: ufgf/Anarchy
 public SocketGuild()
 {
     OnClientUpdated += (sender, e) => Channels.SetClientsInList(Client);
 }