| 195 | } |
| 196 | |
| 197 | void GuiScript::parseLocalSoundStatement(parser::DefTokeniser& tokeniser) |
| 198 | { |
| 199 | // Prototype: localSound <sound> |
| 200 | StatementPtr st(new Statement(Statement::ST_LOCALSOUND)); |
| 201 | |
| 202 | st->args.push_back(_owner.parseString(tokeniser)); // sound |
| 203 | tokeniser.assertNextToken(";"); |
| 204 | |
| 205 | pushStatement(st); |
| 206 | } |
| 207 | |
| 208 | void GuiScript::parseRunScriptStatement(parser::DefTokeniser& tokeniser) |
| 209 | { |
nothing calls this directly
no test coverage detected