]> git.localhorst.tv Git - orbi.git/commit
initial collision tests
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 7 Apr 2014 07:42:42 +0000 (09:42 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Tue, 8 Apr 2014 09:03:16 +0000 (11:03 +0200)
commit4a51a83bdff30d1e25a5867cfb19936adc0034b1
tree60b713b299bb128ab2c256059f7a04518fbaa26b
initial collision tests
44 files changed:
.gitignore [new file with mode: 0644]
build/base.mk [new file with mode: 0644]
build/collision.mk [new file with mode: 0644]
build/config.mk [new file with mode: 0644]
build/debug/Makefile [new file with mode: 0644]
build/orbi.mk [new file with mode: 0644]
build/release/Makefile [new file with mode: 0644]
build/rules.mk [new file with mode: 0644]
build/targets.mk [new file with mode: 0644]
build/test.mk [new file with mode: 0644]
src/app/Application.cpp [new file with mode: 0644]
src/app/Application.h [new file with mode: 0644]
src/app/IMG.cpp [new file with mode: 0644]
src/app/IMG.h [new file with mode: 0644]
src/app/SDL.cpp [new file with mode: 0644]
src/app/SDL.h [new file with mode: 0644]
src/collision.cpp [new file with mode: 0644]
src/graphics/Camera.cpp [new file with mode: 0644]
src/graphics/Camera.h [new file with mode: 0644]
src/graphics/Canvas.cpp [new file with mode: 0644]
src/graphics/Canvas.h [new file with mode: 0644]
src/graphics/Color.h [new file with mode: 0644]
src/graphics/Moveable.h [new file with mode: 0644]
src/graphics/Rect.h [new file with mode: 0644]
src/graphics/Sprite.cpp [new file with mode: 0644]
src/graphics/Sprite.h [new file with mode: 0644]
src/graphics/Texture.cpp [new file with mode: 0644]
src/graphics/Texture.h [new file with mode: 0644]
src/graphics/Vector.h [new file with mode: 0644]
src/graphics/Window.cpp [new file with mode: 0644]
src/graphics/Window.h [new file with mode: 0644]
src/graphics/const.h [new file with mode: 0644]
src/orbi.cpp [new file with mode: 0644]
src/world/AABB.cpp [new file with mode: 0644]
src/world/AABB.h [new file with mode: 0644]
src/world/Entity.cpp [new file with mode: 0644]
src/world/Entity.h [new file with mode: 0644]
src/world/Tile.h [new file with mode: 0644]
src/world/TileClass.h [new file with mode: 0644]
src/world/Tileset.cpp [new file with mode: 0644]
src/world/Tileset.h [new file with mode: 0644]
src/world/World.cpp [new file with mode: 0644]
src/world/World.h [new file with mode: 0644]
tests/test-all.cpp [new file with mode: 0644]