summaryrefslogtreecommitdiff
path: root/src/physics.h
blob: e32a785df7a9593ac3f976720d7fa6818938df26 (plain)
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