├── .gitattributes ├── .gitignore ├── .vscode └── tasks.json ├── CHANGELOG.md ├── README.md ├── pawn.json ├── sound.inc └── test.pwn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoutProvost/samp-sound-array/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoutProvost/samp-sound-array/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoutProvost/samp-sound-array/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 1.0.0 4 | - Initial release 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoutProvost/samp-sound-array/HEAD/README.md -------------------------------------------------------------------------------- /pawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoutProvost/samp-sound-array/HEAD/pawn.json -------------------------------------------------------------------------------- /sound.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoutProvost/samp-sound-array/HEAD/sound.inc -------------------------------------------------------------------------------- /test.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoutProvost/samp-sound-array/HEAD/test.pwn --------------------------------------------------------------------------------