! Get the name of the entity @return Name of the entity */
| 499 | @return Name of the entity |
| 500 | */ |
| 501 | int CScriptObjectEntity::GetName(IFunctionHandler *pH) |
| 502 | { |
| 503 | CHECK_PARAMETERS(0); |
| 504 | string sName; |
| 505 | sName=m_pEntity->GetName(); |
| 506 | return pH->EndFunction(sName.c_str()); |
| 507 | } |
| 508 | |
| 509 | /*! Load an animated character |
| 510 | @param sFileName File name of the .cid file |
no test coverage detected