├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── crash_report.md │ ├── enhancement_request.md │ └── feature_request.md ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE.md ├── README.md ├── src-botsplugin ├── K4-Arenas-Bots.cs └── K4-Arenas-Bots.csproj ├── src-plugin ├── K4-Arenas-Example.cs ├── K4-Arenas.csproj ├── Plugin │ ├── Models │ │ ├── ArenaFinder.cs │ │ ├── ArenaModel.cs │ │ ├── ArenaPlayerModel.cs │ │ ├── ArenaResultModel.cs │ │ ├── ArenaRoundTypeModel.cs │ │ ├── ArenasModel.cs │ │ ├── ChallengeModel.cs │ │ ├── GameConfigModel.cs │ │ └── WeaponModel.cs │ ├── Plugin.cs │ ├── PluginAPI.cs │ ├── PluginCommands.cs │ ├── PluginConfig.cs │ ├── PluginDatabase.cs │ ├── PluginEvents.cs │ ├── PluginListeners.cs │ ├── PluginManifest.cs │ └── PluginStock.cs ├── lang │ ├── en.json │ └── pl.json └── readme.txt └── src-shared ├── K4-ArenaSharedApi.cs ├── K4-ArenaSharedApi.csproj └── K4-ArenaSharedApi.dll /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crash_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/.github/ISSUE_TEMPLATE/crash_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/.github/ISSUE_TEMPLATE/enhancement_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/README.md -------------------------------------------------------------------------------- /src-botsplugin/K4-Arenas-Bots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-botsplugin/K4-Arenas-Bots.cs -------------------------------------------------------------------------------- /src-botsplugin/K4-Arenas-Bots.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-botsplugin/K4-Arenas-Bots.csproj -------------------------------------------------------------------------------- /src-plugin/K4-Arenas-Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/K4-Arenas-Example.cs -------------------------------------------------------------------------------- /src-plugin/K4-Arenas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/K4-Arenas.csproj -------------------------------------------------------------------------------- /src-plugin/Plugin/Models/ArenaFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Models/ArenaFinder.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/Models/ArenaModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Models/ArenaModel.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/Models/ArenaPlayerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Models/ArenaPlayerModel.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/Models/ArenaResultModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Models/ArenaResultModel.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/Models/ArenaRoundTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Models/ArenaRoundTypeModel.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/Models/ArenasModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Models/ArenasModel.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/Models/ChallengeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Models/ChallengeModel.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/Models/GameConfigModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Models/GameConfigModel.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/Models/WeaponModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Models/WeaponModel.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/Plugin.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/PluginAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/PluginAPI.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/PluginCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/PluginCommands.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/PluginConfig.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/PluginDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/PluginDatabase.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/PluginEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/PluginEvents.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/PluginListeners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/PluginListeners.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/PluginManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/PluginManifest.cs -------------------------------------------------------------------------------- /src-plugin/Plugin/PluginStock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/Plugin/PluginStock.cs -------------------------------------------------------------------------------- /src-plugin/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/lang/en.json -------------------------------------------------------------------------------- /src-plugin/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-plugin/lang/pl.json -------------------------------------------------------------------------------- /src-plugin/readme.txt: -------------------------------------------------------------------------------- 1 | https://github.com/K4ryuu/K4-Arenas/wiki -------------------------------------------------------------------------------- /src-shared/K4-ArenaSharedApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-shared/K4-ArenaSharedApi.cs -------------------------------------------------------------------------------- /src-shared/K4-ArenaSharedApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-shared/K4-ArenaSharedApi.csproj -------------------------------------------------------------------------------- /src-shared/K4-ArenaSharedApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-Arenas/HEAD/src-shared/K4-ArenaSharedApi.dll --------------------------------------------------------------------------------