Changeset 147 for trunk/src/ticker.h
- Timestamp:
- Aug 21, 2010, 4:20:33 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ticker.h
r126 r147 7 7 // The Ticker class 8 8 // ---------------- 9 // The Ticker is a static class that registers assets and ticks them.9 // The Ticker is a static class that registers entities and ticks them. 10 10 // 11 11 … … 15 15 #include <stdint.h> 16 16 17 #include " asset.h"17 #include "entity.h" 18 18 19 19 class Ticker 20 20 { 21 21 public: 22 static void Register( Asset *asset);22 static void Register(Entity *entity); 23 23 24 24 static void TickGame();
Note: See TracChangeset
for help on using the changeset viewer.