1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef PHYSICS_H_ #define PHYSICS_H_ #include <raylib.h> #include "entity.h" void move_and_collide ( struct entity* entity, float delta_time ); #endif