fixed clipping, emuprint for mgba, foo
[gbajam22] / src / player.h
index 6751691..33abfaf 100644 (file)
@@ -3,9 +3,13 @@
 
 #include <stdint.h>
 
+struct cell;
+
 struct player {
        int32_t x, y;
        int32_t theta, phi;
+       int cx, cy;
+       struct cell *cell;
 };
 
 void player_input(struct player *p, uint16_t bnstate);