Files
WrldBox/src/physics.h
2026-06-22 01:29:58 -04:00

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