very bad collision(work in progress)

This commit is contained in:
swim67667
2026-06-22 01:29:58 -04:00
commit 22377c6f1a
26 changed files with 4453 additions and 0 deletions

10
src/player.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef PLAYER_H
#define PLAYER_H
// FUNction declaration! yay!!!
// run by main.c constantly to allow player input.
extern bool dir;
extern float curhorvel;
void UpdatePlayerControls(void);
#endif