├── .gitignore ├── LICENSE ├── README.md ├── makefile ├── mp3 └── christmas.mp3 ├── raylib_app.c ├── raylib_app.h └── snow.gif /.gitignore: -------------------------------------------------------------------------------- 1 | raylib_app 2 | snowfall 3 | 4 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sieep-Coding/snow-simulation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sieep-Coding/snow-simulation/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sieep-Coding/snow-simulation/HEAD/makefile -------------------------------------------------------------------------------- /mp3/christmas.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sieep-Coding/snow-simulation/HEAD/mp3/christmas.mp3 -------------------------------------------------------------------------------- /raylib_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sieep-Coding/snow-simulation/HEAD/raylib_app.c -------------------------------------------------------------------------------- /raylib_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sieep-Coding/snow-simulation/HEAD/raylib_app.h -------------------------------------------------------------------------------- /snow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sieep-Coding/snow-simulation/HEAD/snow.gif --------------------------------------------------------------------------------