| 4632 | } |
| 4633 | |
| 4634 | void MovementObject::ASSetIntVar(std::string name, int value) { |
| 4635 | *(int*)as_context->GetVarPtr(name.c_str()) = value; |
| 4636 | } |
| 4637 | |
| 4638 | void MovementObject::ASSetArrayIntVar(std::string name, int index, int value) { |
| 4639 | *(int*)as_context->GetArrayVarPtr(name, index) = value; |