| 168 | } |
| 169 | |
| 170 | void Event_RaiseString(struct Event_String* handlers, const cc_string* str) { |
| 171 | int i; |
| 172 | for (i = 0; i < handlers->Count; i++) { |
| 173 | handlers->Handlers[i](handlers->Objs[i], str); |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | void Event_RaiseRawMove(struct Event_RawMove* handlers, float xDelta, float yDelta) { |
| 178 | int i; |
no outgoing calls
no test coverage detected