aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/action_node.cpp
AgeCommit message (Collapse)Author
2013-08-04ZVISION: Optimize integer type usagesrichiesams
The general thought is int is faster than int16 or byte. So if you can afford the space, use it over int16 or byte. Also, only use int32 when you specifically need the 32 bits.
2013-08-04ZVISION: Add ActionNode classrichiesams
This class encases actions that happen over time (timer, animations, etc) Each frame, the engine calls process() on each active ActionNode