├── LD47.sublime-project ├── LICENSE ├── README.md ├── hyperbolic-fighers.exe ├── res └── font_atlas.png └── src ├── draw.odin ├── frag.glsl ├── glfw ├── bindings.odin ├── constants.odin ├── glfw3.lib ├── native.odin └── types.odin ├── image.odin ├── main.odin ├── odin-gl ├── LICENSE ├── LICENSE_glad ├── README.md ├── constants.odin ├── enums.odin ├── helpers.odin ├── impl.odin └── wrappers.odin ├── stbi ├── stb_image.lib ├── stb_image.odin ├── stb_image_write.lib └── stb_image_write.odin └── vert.glsl /LD47.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/LD47.sublime-project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/README.md -------------------------------------------------------------------------------- /hyperbolic-fighers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/hyperbolic-fighers.exe -------------------------------------------------------------------------------- /res/font_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/res/font_atlas.png -------------------------------------------------------------------------------- /src/draw.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/draw.odin -------------------------------------------------------------------------------- /src/frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/frag.glsl -------------------------------------------------------------------------------- /src/glfw/bindings.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/glfw/bindings.odin -------------------------------------------------------------------------------- /src/glfw/constants.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/glfw/constants.odin -------------------------------------------------------------------------------- /src/glfw/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/glfw/glfw3.lib -------------------------------------------------------------------------------- /src/glfw/native.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/glfw/native.odin -------------------------------------------------------------------------------- /src/glfw/types.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/glfw/types.odin -------------------------------------------------------------------------------- /src/image.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/image.odin -------------------------------------------------------------------------------- /src/main.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/main.odin -------------------------------------------------------------------------------- /src/odin-gl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/odin-gl/LICENSE -------------------------------------------------------------------------------- /src/odin-gl/LICENSE_glad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/odin-gl/LICENSE_glad -------------------------------------------------------------------------------- /src/odin-gl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/odin-gl/README.md -------------------------------------------------------------------------------- /src/odin-gl/constants.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/odin-gl/constants.odin -------------------------------------------------------------------------------- /src/odin-gl/enums.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/odin-gl/enums.odin -------------------------------------------------------------------------------- /src/odin-gl/helpers.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/odin-gl/helpers.odin -------------------------------------------------------------------------------- /src/odin-gl/impl.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/odin-gl/impl.odin -------------------------------------------------------------------------------- /src/odin-gl/wrappers.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/odin-gl/wrappers.odin -------------------------------------------------------------------------------- /src/stbi/stb_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/stbi/stb_image.lib -------------------------------------------------------------------------------- /src/stbi/stb_image.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/stbi/stb_image.odin -------------------------------------------------------------------------------- /src/stbi/stb_image_write.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/stbi/stb_image_write.lib -------------------------------------------------------------------------------- /src/stbi/stb_image_write.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/stbi/stb_image_write.odin -------------------------------------------------------------------------------- /src/vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingerBill/LD47/HEAD/src/vert.glsl --------------------------------------------------------------------------------