summaryrefslogtreecommitdiff
path: root/src/actor.cpp
AgeCommit message (Collapse)AuthorFilesLines
2010-12-06Removed superfluous #includes taken from checkheaders list.Yohann Ferreira1-1/+0
Resolves: Mana-Mantis #265. Trivial fix.
2010-05-06Add support for floor item spritesJared Adams1-2/+1
This commit adds a sprite hierarchy (Sprite->ImageSprite,AnimatedSprite,CompundSprite; CompoundSprite,Actor->ActorSprite;ActorSprite->Being,FloorItem) to collect common functionailty into new base classes which will make other Mantis tickets easier to do. Also allows monsters to use particle effects. Reviewed-by: Bertram
2010-04-23Add an Actor class to replace the Sprite classJared Adams1-0/+59
The Actor class manages the Map reference, position vector, and alpha float. These are the common parts from it's children.