FULLPIPE: Implement sceneHandler16_drink()

This commit is contained in:
Eugene Sandulenko 2014-01-01 15:27:30 +02:00
parent db98d92325
commit 5c9f46b88d
4 changed files with 64 additions and 3 deletions

View file

@ -331,6 +331,10 @@ void MessageQueue::addExCommandToEnd(ExCommand *ex) {
_exCommands.push_back(ex);
}
void MessageQueue::insertExCommandAt(int pos, ExCommand *ex) {
warning("STUB: MessageQueue::insertExCommandAt()");
}
ExCommand *MessageQueue::getExCommandByIndex(uint idx) {
if (idx >= getCount())
return 0;