| 154 | } |
| 155 | |
| 156 | void Event_RaiseChat(struct Event_Chat* handlers, const cc_string* msg, int msgType) { |
| 157 | int i; |
| 158 | for (i = 0; i < handlers->Count; i++) { |
| 159 | handlers->Handlers[i](handlers->Objs[i], msg, msgType); |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | void Event_RaiseInput(struct Event_Input* handlers, int key, cc_bool repeating, struct InputDevice* device) { |
| 164 | int i; |
no outgoing calls
no test coverage detected