├── .github └── workflows │ ├── release-modern.yml │ └── release.yml ├── .gitignore ├── CS2ScreenMenuAPI.csproj ├── CS2ScreenMenuAPI.sln ├── Dapper.dll ├── Images ├── store1.png └── store2.png ├── MySqlConnector.dll ├── README.md ├── TestPlugin ├── TestPlugin.cs └── TestPlugin.csproj ├── Tomlyn.dll ├── config.toml └── src ├── Buttons └── Buttons.cs ├── Config └── Config.cs ├── DisplayManager └── DisplayManager.cs ├── Internal ├── Menu.cs ├── MenuAPI.cs └── MenuOption.cs ├── MenuRenderer └── MenuRenderer.cs ├── Player └── Player.cs ├── PlayerExtensions └── PlayerExtensions.cs ├── PlayerRes ├── Database.cs └── PlayerRes.cs └── interfaces ├── IMenu.cs └── IMenuOption.cs /.github/workflows/release-modern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/.github/workflows/release-modern.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /CS2ScreenMenuAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/CS2ScreenMenuAPI.csproj -------------------------------------------------------------------------------- /CS2ScreenMenuAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/CS2ScreenMenuAPI.sln -------------------------------------------------------------------------------- /Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/Dapper.dll -------------------------------------------------------------------------------- /Images/store1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/Images/store1.png -------------------------------------------------------------------------------- /Images/store2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/Images/store2.png -------------------------------------------------------------------------------- /MySqlConnector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/MySqlConnector.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/README.md -------------------------------------------------------------------------------- /TestPlugin/TestPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/TestPlugin/TestPlugin.cs -------------------------------------------------------------------------------- /TestPlugin/TestPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/TestPlugin/TestPlugin.csproj -------------------------------------------------------------------------------- /Tomlyn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/Tomlyn.dll -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/config.toml -------------------------------------------------------------------------------- /src/Buttons/Buttons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/Buttons/Buttons.cs -------------------------------------------------------------------------------- /src/Config/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/Config/Config.cs -------------------------------------------------------------------------------- /src/DisplayManager/DisplayManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/DisplayManager/DisplayManager.cs -------------------------------------------------------------------------------- /src/Internal/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/Internal/Menu.cs -------------------------------------------------------------------------------- /src/Internal/MenuAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/Internal/MenuAPI.cs -------------------------------------------------------------------------------- /src/Internal/MenuOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/Internal/MenuOption.cs -------------------------------------------------------------------------------- /src/MenuRenderer/MenuRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/MenuRenderer/MenuRenderer.cs -------------------------------------------------------------------------------- /src/Player/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/Player/Player.cs -------------------------------------------------------------------------------- /src/PlayerExtensions/PlayerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/PlayerExtensions/PlayerExtensions.cs -------------------------------------------------------------------------------- /src/PlayerRes/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/PlayerRes/Database.cs -------------------------------------------------------------------------------- /src/PlayerRes/PlayerRes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/PlayerRes/PlayerRes.cs -------------------------------------------------------------------------------- /src/interfaces/IMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/interfaces/IMenu.cs -------------------------------------------------------------------------------- /src/interfaces/IMenuOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T3Marius/CS2ScreenMenuAPI/HEAD/src/interfaces/IMenuOption.cs --------------------------------------------------------------------------------