├── .gitignore ├── .travis.yml ├── LICENSE ├── addons └── sourcemod │ ├── configs │ └── props │ │ ├── example.props.txt │ │ └── props_list.txt │ └── scripting │ ├── HexProps │ └── model_moving.sp │ ├── hexprops.sp │ └── include │ ├── hexprops.inc │ └── hexstocks.inc └── ci ├── build.sh └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.smx -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/LICENSE -------------------------------------------------------------------------------- /addons/sourcemod/configs/props/example.props.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/addons/sourcemod/configs/props/example.props.txt -------------------------------------------------------------------------------- /addons/sourcemod/configs/props/props_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/addons/sourcemod/configs/props/props_list.txt -------------------------------------------------------------------------------- /addons/sourcemod/scripting/HexProps/model_moving.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/addons/sourcemod/scripting/HexProps/model_moving.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/hexprops.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/addons/sourcemod/scripting/hexprops.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/hexprops.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/addons/sourcemod/scripting/include/hexprops.inc -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/hexstocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/addons/sourcemod/scripting/include/hexstocks.inc -------------------------------------------------------------------------------- /ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/ci/build.sh -------------------------------------------------------------------------------- /ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hexer10/HexProps/HEAD/ci/test.sh --------------------------------------------------------------------------------