| 334 | } |
| 335 | |
| 336 | void |
| 337 | DeviceManager::Animate(double fElapsedTimeSeconds) |
| 338 | { |
| 339 | for(auto it = m_vControllers.begin(); it != m_vControllers.end(); it++) |
| 340 | { |
| 341 | if((*it)->IsEnabled()) |
| 342 | { |
| 343 | (*it)->Animate(fElapsedTimeSeconds); |
| 344 | } |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | void |
| 349 | DeviceManager::DeviceCreated() |