├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── FindSoundIo.cmake └── src └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyllj/Roar/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyllj/Roar/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyllj/Roar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyllj/Roar/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindSoundIo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyllj/Roar/HEAD/cmake/FindSoundIo.cmake -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyllj/Roar/HEAD/src/main.c --------------------------------------------------------------------------------