| 80 | static struct IGameComponent* comps_head; |
| 81 | static struct IGameComponent* comps_tail; |
| 82 | void Game_AddComponent(struct IGameComponent* comp) { |
| 83 | LinkedList_Append(comp, comps_head, comps_tail); |
| 84 | } |
| 85 | |
| 86 | #define TASKS_DEF_ELEMS 6 |
| 87 | static struct ScheduledTask defaultTasks[TASKS_DEF_ELEMS]; |
no outgoing calls
no test coverage detected