| 2215 | } |
| 2216 | |
| 2217 | CString CSimpleEntity::GetGeometryFile() const |
| 2218 | { |
| 2219 | CString filename; |
| 2220 | if (m_properties) |
| 2221 | { |
| 2222 | IVariable* pModelVar = m_properties->FindVariable( "object_Model" ); |
| 2223 | if (pModelVar) |
| 2224 | { |
| 2225 | pModelVar->Get( filename ); |
| 2226 | } |
| 2227 | } |
| 2228 | return filename; |
| 2229 | } |
| 2230 | |
| 2231 | ////////////////////////////////////////////////////////////////////////// |
| 2232 | bool CSimpleEntity::ConvertFromObject( CBaseObject *object ) |
no test coverage detected