├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── AdminMenuExample.json ├── PublicMenuExample.json ├── RulesMenuExample.json └── VIPMenuExample.json ├── project.sln └── src ├── CustomMenu.csproj ├── Menu.cs ├── Utils.cs ├── config.cs ├── lang └── en.json └── main.cs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/README.md -------------------------------------------------------------------------------- /examples/AdminMenuExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/examples/AdminMenuExample.json -------------------------------------------------------------------------------- /examples/PublicMenuExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/examples/PublicMenuExample.json -------------------------------------------------------------------------------- /examples/RulesMenuExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/examples/RulesMenuExample.json -------------------------------------------------------------------------------- /examples/VIPMenuExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/examples/VIPMenuExample.json -------------------------------------------------------------------------------- /project.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/project.sln -------------------------------------------------------------------------------- /src/CustomMenu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/src/CustomMenu.csproj -------------------------------------------------------------------------------- /src/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/src/Menu.cs -------------------------------------------------------------------------------- /src/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/src/Utils.cs -------------------------------------------------------------------------------- /src/config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/src/config.cs -------------------------------------------------------------------------------- /src/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/src/lang/en.json -------------------------------------------------------------------------------- /src/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exkludera-cssharp/custom-menu/HEAD/src/main.cs --------------------------------------------------------------------------------