| 236 | } |
| 237 | |
| 238 | void Scheduler::pushCommand(Command::Type type, ProcessNode * object, ProcessNode * other){ |
| 239 | other->mDeletable=true; |
| 240 | Command c = { type, object, other }; |
| 241 | mAddCommands.push(c); |
| 242 | } |
| 243 | |
| 244 | void Scheduler::hpUpdateControlFuncs(double dt){ |
| 245 | Funcs::iterator it = mFuncs.begin(); |