X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fplayer.h;h=7636af5f36a0b2d88aa05e2c060000f4a32c3851;hb=097d03fa2406fca819b27b698ffb1cfc8ac445c2;hp=33abfaf0eaab1b9056b46f4b0c11abd0544b6802;hpb=0ff927162004fe6b5d0022000284a1bdb306960e;p=gbajam22 diff --git a/src/player.h b/src/player.h index 33abfaf..7636af5 100644 --- a/src/player.h +++ b/src/player.h @@ -4,6 +4,7 @@ #include struct cell; +struct level; struct player { int32_t x, y; @@ -12,6 +13,7 @@ struct player { struct cell *cell; }; +void init_player(struct player *p, struct level *lvl); void player_input(struct player *p, uint16_t bnstate); #endif /* PLAYER_H_ */