Player's aim is now updated constantly as they move, just need to solve #57 to complete it. Closes #9.

This commit is contained in:
Zed A. Shaw 2025-07-05 11:18:26 -04:00
parent 584c4e9f67
commit a26f0b0c0a
7 changed files with 48 additions and 27 deletions

View file

@ -27,7 +27,8 @@ namespace components {
};
struct Position {
Point location;
Point location{0,0};
Point aiming_at{0,0};
};
struct Motion {