]> code.bitgloo.com Git - clyne/gamedev.git/commit
component reorginization; entity flashes
authorClyne Sullivan <tullivan99@gmail.com>
Wed, 14 Jun 2017 01:01:08 +0000 (21:01 -0400)
committerClyne Sullivan <tullivan99@gmail.com>
Wed, 14 Jun 2017 01:01:08 +0000 (21:01 -0400)
commit316df0931c66e43e69f21bda28c77b9bdb1e8bca
treed98231e4b41d046a2a60ee9c6f1cc724a9e3837d
parent11b8e727e04ed6095164bb826541409f88047625
component reorginization; entity flashes
35 files changed:
Makefile
include/components.hpp
include/components/aggro.hpp [new file with mode: 0644]
include/components/all.hpp
include/components/animate.hpp [new file with mode: 0644]
include/components/dialog.hpp [new file with mode: 0644]
include/components/direction.hpp [new file with mode: 0644]
include/components/flash.hpp [new file with mode: 0644]
include/components/grounded.hpp [new file with mode: 0644]
include/components/health.hpp [new file with mode: 0644]
include/components/hit.hpp [new file with mode: 0644]
include/components/hop.hpp [new file with mode: 0644]
include/components/itemdrop.hpp [new file with mode: 0644]
include/components/name.hpp [new file with mode: 0644]
include/components/physics.hpp [new file with mode: 0644]
include/components/player.hpp [new file with mode: 0644]
include/components/portal.hpp [new file with mode: 0644]
include/components/position.hpp [new file with mode: 0644]
include/components/solid.hpp [new file with mode: 0644]
include/components/sprite.hpp [new file with mode: 0644]
include/components/trigger.hpp [new file with mode: 0644]
include/components/visible.hpp [new file with mode: 0644]
include/components/wander.hpp [new file with mode: 0644]
include/systems/dialog.hpp [new file with mode: 0644]
include/systems/movement.hpp [new file with mode: 0644]
include/systems/physics.hpp [new file with mode: 0644]
include/systems/render.hpp [new file with mode: 0644]
src/components.cpp [deleted file]
src/components/animate.cpp [new file with mode: 0644]
src/components/sprite.cpp [new file with mode: 0644]
src/engine.cpp
src/systems/dialog.cpp [new file with mode: 0644]
src/systems/movement.cpp [new file with mode: 0644]
src/systems/physics.cpp [new file with mode: 0644]
src/systems/render.cpp [new file with mode: 0644]