| 51 | } |
| 52 | |
| 53 | bool OPS_removeDamping(int tag) |
| 54 | { |
| 55 | TaggedObject* obj = theDampingObjects.removeComponent(tag); |
| 56 | if (obj != 0) |
| 57 | { |
| 58 | delete obj; |
| 59 | return true; |
| 60 | } |
| 61 | return false; |
| 62 | } |
| 63 | |
| 64 | Damping *OPS_getDamping(int tag) |
| 65 | { |
nothing calls this directly
no test coverage detected