--------------------------------- I_Tickable::I_Tickable Construct an I_Tickable with a priority and register it to the tick manager
| 20 | // Construct an I_Tickable with a priority and register it to the tick manager |
| 21 | // |
| 22 | I_Tickable::I_Tickable(uint32 const priority) |
| 23 | { |
| 24 | TickManager::GetInstance()->RegisterTickable(this, priority); |
| 25 | } |
| 26 | |
| 27 | //--------------------------------- |
| 28 | // I_Tickable::~I_Tickable |
nothing calls this directly
no test coverage detected