├── .gitignore ├── LICENSE ├── Main.cs ├── README.md ├── WeaponRestrict.csproj └── WeaponRestrict.sln /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CS2Plugins/WeaponRestrict/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CS2Plugins/WeaponRestrict/HEAD/Main.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CS2Plugins/WeaponRestrict/HEAD/README.md -------------------------------------------------------------------------------- /WeaponRestrict.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CS2Plugins/WeaponRestrict/HEAD/WeaponRestrict.csproj -------------------------------------------------------------------------------- /WeaponRestrict.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CS2Plugins/WeaponRestrict/HEAD/WeaponRestrict.sln --------------------------------------------------------------------------------