| 542 | } |
| 543 | |
| 544 | void Script::VarSet(const char* name, GameValuePar value, bool readOnly) |
| 545 | { |
| 546 | GameState* gstate = GWorld->GetGameState(); |
| 547 | gstate->BeginContext(&_vars); |
| 548 | gstate->VarSet(name, value, readOnly); |
| 549 | gstate->EndContext(); |
| 550 | } |
| 551 | |
| 552 | void Script::GoTo(RString label) |
| 553 | { |
no test coverage detected