| 95 | } |
| 96 | |
| 97 | bool OPS_removeMesh(int tag) { |
| 98 | TaggedObject *obj = theMeshObjects.removeComponent(tag); |
| 99 | if (obj != 0) { |
| 100 | delete obj; |
| 101 | return true; |
| 102 | } |
| 103 | return false; |
| 104 | } |
| 105 | |
| 106 | Mesh *OPS_getMesh(int tag) { |
| 107 |
nothing calls this directly
no test coverage detected