Greatly reduce code complexity & make IF samples functional (#2205)

* Greatly reduce code complexity

* Fixes sharded client IF implementation
This commit is contained in:
Armano den Boef
2022-03-26 13:37:30 +01:00
committed by GitHub
parent c286b9978e
commit 47de5a2fb4
12 changed files with 170 additions and 351 deletions

View File

@@ -0,0 +1,20 @@
using Discord.Interactions;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InteractionFramework
{
public enum ExampleEnum
{
First,
Second,
Third,
Fourth,
[ChoiceDisplay("Twenty First")]
TwentyFirst
}
}