| 4628 | } |
| 4629 | |
| 4630 | bool MovementObject::ASGetBoolVar(std::string name) { |
| 4631 | return *((bool*)as_context->GetVarPtr(name.c_str())); |
| 4632 | } |
| 4633 | |
| 4634 | void MovementObject::ASSetIntVar(std::string name, int value) { |
| 4635 | *(int*)as_context->GetVarPtr(name.c_str()) = value; |