Strafing now works, thanks to rcr but needs a unit test on the camera and probbably a refactor so that rayview uses it or knows nothing about it?

This commit is contained in:
Zed A. Shaw 2025-02-03 14:17:20 -05:00
parent 48ac6603a8
commit 740e30cb2b
3 changed files with 40 additions and 9 deletions

View file

@ -17,4 +17,7 @@ struct CameraLOL {
bool play_run(Raycaster &rayview);
void plan_rotate(Raycaster &rayview, int dir);
bool play_rotate(Raycaster &rayview);
void plan_strafe(Raycaster &rayview, int dir);
bool play_strafe(Raycaster &rayview);
};