| 117 | #endif |
| 118 | |
| 119 | bool CScriptZone::active_contact(u16 id) const |
| 120 | { |
| 121 | xr_vector<CObject*>::const_iterator I = feel_touch.begin(); |
| 122 | xr_vector<CObject*>::const_iterator E = feel_touch.end(); |
| 123 | for (; I != E; ++I) |
| 124 | if ((*I)->ID() == id) |
| 125 | return (true); |
| 126 | return (false); |
| 127 | } |
no test coverage detected