| 787 | } |
| 788 | |
| 789 | void TileMap::addVirtualObjectType( const std::string& name ) { |
| 790 | if ( std::find( mObjTypes.begin(), mObjTypes.end(), name ) == mObjTypes.end() ) |
| 791 | mObjTypes.push_back( name ); |
| 792 | } |
| 793 | |
| 794 | void TileMap::removeVirtualObjectType( const std::string& name ) { |
| 795 | auto found = std::find( mObjTypes.begin(), mObjTypes.end(), name ); |
no test coverage detected