| 792 | } |
| 793 | |
| 794 | void TileMap::removeVirtualObjectType( const std::string& name ) { |
| 795 | auto found = std::find( mObjTypes.begin(), mObjTypes.end(), name ); |
| 796 | if ( found == mObjTypes.end() ) |
| 797 | mObjTypes.erase( found ); |
| 798 | } |
| 799 | |
| 800 | void TileMap::clearVirtualObjectTypes() { |
| 801 | mObjTypes.clear(); |