├── LICENSE ├── README.md ├── Snowling-x86_64.AppImage ├── blender ├── README.md ├── skybg.jpg └── snowling.blend ├── compile.sh ├── dynamic.h ├── esAux2.h ├── gl.h ├── glad_gl.c ├── glfw3.dll ├── glfw3.h ├── khrplatform.h ├── lib └── libglfw3dll.a ├── main.c ├── makefile ├── mat.h ├── minball.h ├── res.h ├── scene.h ├── snap └── gui │ ├── snowling.desktop │ └── snowling.png ├── snapcraft.yaml ├── snowling ├── snowling.exe ├── snowling_arm └── vec.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/README.md -------------------------------------------------------------------------------- /Snowling-x86_64.AppImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/Snowling-x86_64.AppImage -------------------------------------------------------------------------------- /blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/blender/README.md -------------------------------------------------------------------------------- /blender/skybg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/blender/skybg.jpg -------------------------------------------------------------------------------- /blender/snowling.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/blender/snowling.blend -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/compile.sh -------------------------------------------------------------------------------- /dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/dynamic.h -------------------------------------------------------------------------------- /esAux2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/esAux2.h -------------------------------------------------------------------------------- /gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/gl.h -------------------------------------------------------------------------------- /glad_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/glad_gl.c -------------------------------------------------------------------------------- /glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/glfw3.dll -------------------------------------------------------------------------------- /glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/glfw3.h -------------------------------------------------------------------------------- /khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/khrplatform.h -------------------------------------------------------------------------------- /lib/libglfw3dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/lib/libglfw3dll.a -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/makefile -------------------------------------------------------------------------------- /mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/mat.h -------------------------------------------------------------------------------- /minball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/minball.h -------------------------------------------------------------------------------- /res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/res.h -------------------------------------------------------------------------------- /scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/scene.h -------------------------------------------------------------------------------- /snap/gui/snowling.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/snap/gui/snowling.desktop -------------------------------------------------------------------------------- /snap/gui/snowling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/snap/gui/snowling.png -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /snowling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/snowling -------------------------------------------------------------------------------- /snowling.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/snowling.exe -------------------------------------------------------------------------------- /snowling_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/snowling_arm -------------------------------------------------------------------------------- /vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Snowling/HEAD/vec.h --------------------------------------------------------------------------------