| 126 | } |
| 127 | |
| 128 | void Event_RaiseInt(struct Event_Int* handlers, int arg) { |
| 129 | int i; |
| 130 | for (i = 0; i < handlers->Count; i++) { |
| 131 | handlers->Handlers[i](handlers->Objs[i], arg); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | void Event_RaiseFloat(struct Event_Float* handlers, float arg) { |
| 136 | int i; |
no outgoing calls
no test coverage detected