#ifndef systems_h #define systems_h #include "world.h" void animation_system(World* world); void bullet_system(World* world); void collision_system(World* world); void debris_system(World* world); void enemy_system(World* world); void spawner_system(World* world); void sprite_system(const World* world); #endif