]> git.localhorst.tv Git - gong.git/commit
code, assets, and other stuff stolen from blank
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 1 Dec 2016 08:47:46 +0000 (09:47 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 1 Dec 2016 08:47:46 +0000 (09:47 +0100)
commit0e069351615f1315a5c7103fe5c849a242f72683
treecc168f861e8a96b7014a5a5650fd3534b94009ce
code, assets, and other stuff stolen from blank
87 files changed:
.gitignore [new file with mode: 0644]
.gitmodules [new file with mode: 0644]
Makefile [new file with mode: 0644]
assets [new submodule]
src/app/Application.hpp [new file with mode: 0644]
src/app/AssetLoader.hpp [new file with mode: 0644]
src/app/Assets.hpp [new file with mode: 0644]
src/app/Config.hpp [new file with mode: 0644]
src/app/Environment.hpp [new file with mode: 0644]
src/app/FrameCounter.hpp [new file with mode: 0644]
src/app/HeadlessApplication.hpp [new file with mode: 0644]
src/app/HeadlessEnvironment.hpp [new file with mode: 0644]
src/app/IntervalTimer.hpp [new file with mode: 0644]
src/app/MessageState.hpp [new file with mode: 0644]
src/app/ResourceIndex.hpp [new file with mode: 0644]
src/app/Runtime.hpp [new file with mode: 0644]
src/app/State.hpp [new file with mode: 0644]
src/app/StateControl.hpp [new file with mode: 0644]
src/app/app.cpp [new file with mode: 0644]
src/app/error.cpp [new file with mode: 0644]
src/app/error.hpp [new file with mode: 0644]
src/app/init.cpp [new file with mode: 0644]
src/app/init.hpp [new file with mode: 0644]
src/app/runtime.cpp [new file with mode: 0644]
src/audio/Audio.hpp [new file with mode: 0644]
src/audio/Sound.hpp [new file with mode: 0644]
src/audio/SoundBank.hpp [new file with mode: 0644]
src/audio/audio.cpp [new file with mode: 0644]
src/geometry/const.hpp [new file with mode: 0644]
src/geometry/distance.hpp [new file with mode: 0644]
src/geometry/geometry.cpp [new file with mode: 0644]
src/geometry/primitive.hpp [new file with mode: 0644]
src/geometry/rotation.hpp [new file with mode: 0644]
src/graphics/ArrayTexture.hpp [new file with mode: 0644]
src/graphics/BlendedSprite.hpp [new file with mode: 0644]
src/graphics/Camera.hpp [new file with mode: 0644]
src/graphics/Canvas.hpp [new file with mode: 0644]
src/graphics/CubeMap.hpp [new file with mode: 0644]
src/graphics/Font.hpp [new file with mode: 0644]
src/graphics/Format.hpp [new file with mode: 0644]
src/graphics/PlainColor.hpp [new file with mode: 0644]
src/graphics/PrimitiveMesh.hpp [new file with mode: 0644]
src/graphics/Program.hpp [new file with mode: 0644]
src/graphics/Shader.hpp [new file with mode: 0644]
src/graphics/SkyBox.hpp [new file with mode: 0644]
src/graphics/SkyBoxMesh.hpp [new file with mode: 0644]
src/graphics/SkyBoxShader.hpp [new file with mode: 0644]
src/graphics/SpriteMesh.hpp [new file with mode: 0644]
src/graphics/Texture.hpp [new file with mode: 0644]
src/graphics/TextureBase.hpp [new file with mode: 0644]
src/graphics/VertexArray.hpp [new file with mode: 0644]
src/graphics/VertexArray.inl [new file with mode: 0644]
src/graphics/Viewport.hpp [new file with mode: 0644]
src/graphics/align.hpp [new file with mode: 0644]
src/graphics/gl_traits.cpp [new file with mode: 0644]
src/graphics/gl_traits.hpp [new file with mode: 0644]
src/graphics/glm.hpp [new file with mode: 0644]
src/graphics/mesh.cpp [new file with mode: 0644]
src/graphics/render.cpp [new file with mode: 0644]
src/graphics/shader.cpp [new file with mode: 0644]
src/graphics/viewport.cpp [new file with mode: 0644]
src/io/LineBuffer.hpp [new file with mode: 0644]
src/io/Token.hpp [new file with mode: 0644]
src/io/TokenStreamReader.hpp [new file with mode: 0644]
src/io/Tokenizer.hpp [new file with mode: 0644]
src/io/event.cpp [new file with mode: 0644]
src/io/event.hpp [new file with mode: 0644]
src/io/filesystem.cpp [new file with mode: 0644]
src/io/filesystem.hpp [new file with mode: 0644]
src/io/token.cpp [new file with mode: 0644]
src/ui/FixedText.hpp [new file with mode: 0644]
src/ui/MessageBox.hpp [new file with mode: 0644]
src/ui/Text.hpp [new file with mode: 0644]
src/ui/TextInput.hpp [new file with mode: 0644]
src/ui/widgets.cpp [new file with mode: 0644]
tst/app/TimerTest.cpp [new file with mode: 0644]
tst/app/TimerTest.hpp [new file with mode: 0644]
tst/geometry/IntersectionTest.cpp [new file with mode: 0644]
tst/geometry/IntersectionTest.hpp [new file with mode: 0644]
tst/graphics/GLTraitsTest.cpp [new file with mode: 0644]
tst/graphics/GLTraitsTest.hpp [new file with mode: 0644]
tst/io/EventTest.cpp [new file with mode: 0644]
tst/io/EventTest.hpp [new file with mode: 0644]
tst/io/FilesystemTest.cpp [new file with mode: 0644]
tst/io/FilesystemTest.hpp [new file with mode: 0644]
tst/io/TokenTest.cpp [new file with mode: 0644]
tst/io/TokenTest.hpp [new file with mode: 0644]