├── .gitignore ├── README.md ├── blueprintAssets └── missingImage.png ├── extraParams.hxml ├── frameworkArt ├── logo.png ├── logo.psd └── missingImage.psd ├── haxelib.json ├── src ├── Build.xml ├── ResourceHelper.hx ├── Signal.hx ├── ThreadHelper.hx ├── bindings │ ├── CppHelpers.hx │ ├── Glad.hx │ ├── Glfw.hx │ ├── audio │ │ ├── AL.hx │ │ ├── ALC.hx │ │ ├── DrFLAC.hx │ │ ├── DrMP3.hx │ │ ├── DrWav.hx │ │ └── StbVorbis.hx │ ├── freetype │ │ ├── Freetype.hx │ │ ├── FreetypeBitmap.hx │ │ ├── FreetypeGlyph.hx │ │ └── FreetypeStroker.hx │ └── texture │ │ ├── PngHelper.hx │ │ └── StbImage.hx ├── blueprint │ ├── Game.hx │ ├── Macros.hx │ ├── Scene.hx │ ├── graphics │ │ ├── Shader.hx │ │ ├── SpriteFrames.hx │ │ ├── Texture.hx │ │ └── Window.hx │ ├── import.hx │ ├── input │ │ └── InputHandler.hx │ ├── objects │ │ ├── AnimatedSprite.hx │ │ ├── Camera.hx │ │ ├── ColorRect.hx │ │ ├── Group.hx │ │ ├── Sprite.hx │ │ └── ViewCapture.hx │ ├── sound │ │ ├── AudioFormat.hx │ │ ├── Mixer.hx │ │ ├── SoundData.hx │ │ ├── SoundPlayer.hx │ │ └── formats │ │ │ ├── FlacFormat.hx │ │ │ ├── MP3Format.hx │ │ │ ├── OggFormat.hx │ │ │ └── WavFormat.hx │ ├── text │ │ ├── Font.hx │ │ └── Text.hx │ └── tweening │ │ ├── BaseTween.hx │ │ ├── EaseList.hx │ │ └── PropertyTween.hx └── math │ ├── MathExtras.hx │ ├── Matrix4x4.hx │ ├── Vector2.hx │ ├── Vector3.hx │ └── Vector4.hx ├── vendor ├── include │ ├── AL │ │ ├── al.h │ │ └── alc.h │ ├── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h │ ├── KHR │ │ └── khrplatform.h │ ├── audio │ │ ├── dr_flac.h │ │ ├── dr_mp3.h │ │ ├── dr_wav.h │ │ └── stb_vorbis.h │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ ├── ftstdlib.h │ │ │ ├── integer-types.h │ │ │ ├── mac-support.h │ │ │ └── public-macros.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlogging.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── otsvg.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ ├── ft2build.h │ ├── glad │ │ └── glad.h │ ├── includeWorkaround.h │ ├── png.h │ ├── pngconf.h │ ├── pnglibconf.h │ └── texture │ │ ├── png_helper.h │ │ └── stb_image.h ├── lib │ ├── OpenAL32.dll │ ├── OpenAL32.lib │ ├── freetype.dll │ ├── freetype.lib │ ├── glfw3.lib │ ├── libpng16_static.lib │ └── zlibstatic.lib └── src │ ├── dr_flac.c │ ├── dr_mp3.c │ ├── dr_wav.c │ ├── glad.c │ └── stb_vorbis.c └── workaround.hxml /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/README.md -------------------------------------------------------------------------------- /blueprintAssets/missingImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/blueprintAssets/missingImage.png -------------------------------------------------------------------------------- /extraParams.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/extraParams.hxml -------------------------------------------------------------------------------- /frameworkArt/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/frameworkArt/logo.png -------------------------------------------------------------------------------- /frameworkArt/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/frameworkArt/logo.psd -------------------------------------------------------------------------------- /frameworkArt/missingImage.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/frameworkArt/missingImage.psd -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/haxelib.json -------------------------------------------------------------------------------- /src/Build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/Build.xml -------------------------------------------------------------------------------- /src/ResourceHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/ResourceHelper.hx -------------------------------------------------------------------------------- /src/Signal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/Signal.hx -------------------------------------------------------------------------------- /src/ThreadHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/ThreadHelper.hx -------------------------------------------------------------------------------- /src/bindings/CppHelpers.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/CppHelpers.hx -------------------------------------------------------------------------------- /src/bindings/Glad.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/Glad.hx -------------------------------------------------------------------------------- /src/bindings/Glfw.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/Glfw.hx -------------------------------------------------------------------------------- /src/bindings/audio/AL.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/audio/AL.hx -------------------------------------------------------------------------------- /src/bindings/audio/ALC.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/audio/ALC.hx -------------------------------------------------------------------------------- /src/bindings/audio/DrFLAC.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/audio/DrFLAC.hx -------------------------------------------------------------------------------- /src/bindings/audio/DrMP3.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/audio/DrMP3.hx -------------------------------------------------------------------------------- /src/bindings/audio/DrWav.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/audio/DrWav.hx -------------------------------------------------------------------------------- /src/bindings/audio/StbVorbis.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/audio/StbVorbis.hx -------------------------------------------------------------------------------- /src/bindings/freetype/Freetype.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/freetype/Freetype.hx -------------------------------------------------------------------------------- /src/bindings/freetype/FreetypeBitmap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/freetype/FreetypeBitmap.hx -------------------------------------------------------------------------------- /src/bindings/freetype/FreetypeGlyph.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/freetype/FreetypeGlyph.hx -------------------------------------------------------------------------------- /src/bindings/freetype/FreetypeStroker.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/freetype/FreetypeStroker.hx -------------------------------------------------------------------------------- /src/bindings/texture/PngHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/texture/PngHelper.hx -------------------------------------------------------------------------------- /src/bindings/texture/StbImage.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/bindings/texture/StbImage.hx -------------------------------------------------------------------------------- /src/blueprint/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/Game.hx -------------------------------------------------------------------------------- /src/blueprint/Macros.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/Macros.hx -------------------------------------------------------------------------------- /src/blueprint/Scene.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/Scene.hx -------------------------------------------------------------------------------- /src/blueprint/graphics/Shader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/graphics/Shader.hx -------------------------------------------------------------------------------- /src/blueprint/graphics/SpriteFrames.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/graphics/SpriteFrames.hx -------------------------------------------------------------------------------- /src/blueprint/graphics/Texture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/graphics/Texture.hx -------------------------------------------------------------------------------- /src/blueprint/graphics/Window.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/graphics/Window.hx -------------------------------------------------------------------------------- /src/blueprint/import.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/import.hx -------------------------------------------------------------------------------- /src/blueprint/input/InputHandler.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/input/InputHandler.hx -------------------------------------------------------------------------------- /src/blueprint/objects/AnimatedSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/objects/AnimatedSprite.hx -------------------------------------------------------------------------------- /src/blueprint/objects/Camera.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/objects/Camera.hx -------------------------------------------------------------------------------- /src/blueprint/objects/ColorRect.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/objects/ColorRect.hx -------------------------------------------------------------------------------- /src/blueprint/objects/Group.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/objects/Group.hx -------------------------------------------------------------------------------- /src/blueprint/objects/Sprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/objects/Sprite.hx -------------------------------------------------------------------------------- /src/blueprint/objects/ViewCapture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/objects/ViewCapture.hx -------------------------------------------------------------------------------- /src/blueprint/sound/AudioFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/sound/AudioFormat.hx -------------------------------------------------------------------------------- /src/blueprint/sound/Mixer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/sound/Mixer.hx -------------------------------------------------------------------------------- /src/blueprint/sound/SoundData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/sound/SoundData.hx -------------------------------------------------------------------------------- /src/blueprint/sound/SoundPlayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/sound/SoundPlayer.hx -------------------------------------------------------------------------------- /src/blueprint/sound/formats/FlacFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/sound/formats/FlacFormat.hx -------------------------------------------------------------------------------- /src/blueprint/sound/formats/MP3Format.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/sound/formats/MP3Format.hx -------------------------------------------------------------------------------- /src/blueprint/sound/formats/OggFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/sound/formats/OggFormat.hx -------------------------------------------------------------------------------- /src/blueprint/sound/formats/WavFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/sound/formats/WavFormat.hx -------------------------------------------------------------------------------- /src/blueprint/text/Font.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/text/Font.hx -------------------------------------------------------------------------------- /src/blueprint/text/Text.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/text/Text.hx -------------------------------------------------------------------------------- /src/blueprint/tweening/BaseTween.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/tweening/BaseTween.hx -------------------------------------------------------------------------------- /src/blueprint/tweening/EaseList.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/tweening/EaseList.hx -------------------------------------------------------------------------------- /src/blueprint/tweening/PropertyTween.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/blueprint/tweening/PropertyTween.hx -------------------------------------------------------------------------------- /src/math/MathExtras.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/math/MathExtras.hx -------------------------------------------------------------------------------- /src/math/Matrix4x4.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/math/Matrix4x4.hx -------------------------------------------------------------------------------- /src/math/Vector2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/math/Vector2.hx -------------------------------------------------------------------------------- /src/math/Vector3.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/math/Vector3.hx -------------------------------------------------------------------------------- /src/math/Vector4.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/src/math/Vector4.hx -------------------------------------------------------------------------------- /vendor/include/AL/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/AL/al.h -------------------------------------------------------------------------------- /vendor/include/AL/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/AL/alc.h -------------------------------------------------------------------------------- /vendor/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /vendor/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /vendor/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /vendor/include/audio/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/audio/dr_flac.h -------------------------------------------------------------------------------- /vendor/include/audio/dr_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/audio/dr_mp3.h -------------------------------------------------------------------------------- /vendor/include/audio/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/audio/dr_wav.h -------------------------------------------------------------------------------- /vendor/include/audio/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/audio/stb_vorbis.h -------------------------------------------------------------------------------- /vendor/include/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /vendor/include/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/config/ftheader.h -------------------------------------------------------------------------------- /vendor/include/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /vendor/include/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/config/ftoption.h -------------------------------------------------------------------------------- /vendor/include/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /vendor/include/freetype/config/integer-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/config/integer-types.h -------------------------------------------------------------------------------- /vendor/include/freetype/config/mac-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/config/mac-support.h -------------------------------------------------------------------------------- /vendor/include/freetype/config/public-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/config/public-macros.h -------------------------------------------------------------------------------- /vendor/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/freetype.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftcache.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftchapters.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftcid.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftcolor.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /vendor/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /vendor/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/fterrors.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftimage.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftlist.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftlogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftlogging.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftmac.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftmm.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftotval.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftparams.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftrender.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /vendor/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /vendor/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/fttypes.h -------------------------------------------------------------------------------- /vendor/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /vendor/include/freetype/otsvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/otsvg.h -------------------------------------------------------------------------------- /vendor/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/t1tables.h -------------------------------------------------------------------------------- /vendor/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /vendor/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/tttables.h -------------------------------------------------------------------------------- /vendor/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/freetype/tttags.h -------------------------------------------------------------------------------- /vendor/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/ft2build.h -------------------------------------------------------------------------------- /vendor/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/glad/glad.h -------------------------------------------------------------------------------- /vendor/include/includeWorkaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/includeWorkaround.h -------------------------------------------------------------------------------- /vendor/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/png.h -------------------------------------------------------------------------------- /vendor/include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/pngconf.h -------------------------------------------------------------------------------- /vendor/include/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/pnglibconf.h -------------------------------------------------------------------------------- /vendor/include/texture/png_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/texture/png_helper.h -------------------------------------------------------------------------------- /vendor/include/texture/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/include/texture/stb_image.h -------------------------------------------------------------------------------- /vendor/lib/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/lib/OpenAL32.dll -------------------------------------------------------------------------------- /vendor/lib/OpenAL32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/lib/OpenAL32.lib -------------------------------------------------------------------------------- /vendor/lib/freetype.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/lib/freetype.dll -------------------------------------------------------------------------------- /vendor/lib/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/lib/freetype.lib -------------------------------------------------------------------------------- /vendor/lib/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/lib/glfw3.lib -------------------------------------------------------------------------------- /vendor/lib/libpng16_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/lib/libpng16_static.lib -------------------------------------------------------------------------------- /vendor/lib/zlibstatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/lib/zlibstatic.lib -------------------------------------------------------------------------------- /vendor/src/dr_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/src/dr_flac.c -------------------------------------------------------------------------------- /vendor/src/dr_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/src/dr_mp3.c -------------------------------------------------------------------------------- /vendor/src/dr_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/src/dr_wav.c -------------------------------------------------------------------------------- /vendor/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/src/glad.c -------------------------------------------------------------------------------- /vendor/src/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/vendor/src/stb_vorbis.c -------------------------------------------------------------------------------- /workaround.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueprintFramework-Team/Blueprint/HEAD/workaround.hxml --------------------------------------------------------------------------------