| 145 | } |
| 146 | |
| 147 | void zUIMgr::Update(zScene* s, F32 dt) |
| 148 | { |
| 149 | for (U32 i = 0; i < m_updateMax; i++) |
| 150 | { |
| 151 | if (xBaseIsEnabled(m_update[i])) |
| 152 | { |
| 153 | m_update[i]->update(m_update[i], s, dt); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | debug_update(*s, dt); |
| 158 | } |
| 159 | |
| 160 | void zUIMgr::Setup(zScene* s) |
| 161 | { |
no test coverage detected