| 778 | } |
| 779 | |
| 780 | int asCScriptObject::GetPropertyTypeId(asUINT prop) const |
| 781 | { |
| 782 | if( prop >= objType->properties.GetLength() ) |
| 783 | return asINVALID_ARG; |
| 784 | |
| 785 | return objType->engine->GetTypeIdFromDataType(objType->properties[prop]->type); |
| 786 | } |
| 787 | |
| 788 | const char *asCScriptObject::GetPropertyName(asUINT prop) const |
| 789 | { |