summaryrefslogtreecommitdiff
path: root/src/game-server/entity.cpp
AgeCommit message (Collapse)AuthorFilesLines
2013-01-09Replaced EventListener with signals based on libsigc++Thorbjørn Lindeijer1-47/+0
This replaces the rather hard to understand event dispatcher with a probably even harder to understand templated library, but fortunately we can rely on the available documentation. Hopefully it will also help with the readability of our code and with adding additional signals to other classes. Added libsigc++ to README and Travis CI configuration. Reviewed-by: Erik Schilling
2012-04-04Renamed Thing to EntityThorbjørn Lindeijer1-0/+68
In preparation for using an entity/component system for the entities in the game world, this name will be more recognizable and easier to talk about. Reviewed-by: Yohann Ferreira