]> git.localhorst.tv Git - sdl-test8.git/commit
added collision engine, more or less stole gameplay from sdl-test7
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 7 May 2012 20:38:46 +0000 (20:38 +0000)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 7 May 2012 20:38:46 +0000 (20:38 +0000)
commit8b4877fe48d21d7e789cf52f81c1d6a87b06bcbc
treefc388389098ea90ed8adebd066f5577b0eb0fee1
parent42db59e3850c958821e8396fadc20fbeb71050c4
added collision engine, more or less stole gameplay from sdl-test7
33 files changed:
data/font/Magra-Regular.ttf [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/Control.h [new file with mode: 0644]
src/app/State.h [new file with mode: 0644]
src/app/Timer.cpp [new file with mode: 0644]
src/app/Timer.h [new file with mode: 0644]
src/game/Collision.h [new file with mode: 0644]
src/game/Entity.cpp [new file with mode: 0644]
src/game/Entity.h [new file with mode: 0644]
src/geometry/Ray2D.h [new file with mode: 0644]
src/geometry/Vector2D.h [new file with mode: 0644]
src/geometry/constants.h [new file with mode: 0644]
src/pong/Ball.cpp [new file with mode: 0644]
src/pong/Ball.h [new file with mode: 0644]
src/pong/CountingWall.cpp [new file with mode: 0644]
src/pong/CountingWall.h [new file with mode: 0644]
src/pong/Match.cpp [new file with mode: 0644]
src/pong/Match.h [new file with mode: 0644]
src/pong/Paddle.cpp [new file with mode: 0644]
src/pong/Paddle.h [new file with mode: 0644]
src/sdl-test8.cpp [new file with mode: 0644]
src/sdl/InitSDL.cpp [new file with mode: 0644]
src/sdl/InitSDL.h [new file with mode: 0644]
src/sdl/InitScreen.cpp [new file with mode: 0644]
src/sdl/InitScreen.h [new file with mode: 0644]
src/sdl/InitTTF.cpp [new file with mode: 0644]
src/sdl/InitTTF.h [new file with mode: 0644]
src/shape/AABB.cpp [new file with mode: 0644]
src/shape/AABB.h [new file with mode: 0644]
src/shape/Circle.cpp [new file with mode: 0644]
src/shape/Circle.h [new file with mode: 0644]
src/shape/Shape.h [new file with mode: 0644]