10 lines
245 B
C
10 lines
245 B
C
#ifndef PHYSICS_H
|
|
#define PHYSICS_H
|
|
|
|
// FUNction declaration! yay!!!
|
|
// used by main script to update entities as time goes on
|
|
// i don't think it's used anywhere else, but double check me
|
|
void UpdateEntities(float dt, int screenWidth);
|
|
|
|
#endif
|