Add player and game loop

This commit is contained in:
2026-02-24 15:52:07 +01:00
parent 9ff08e4a91
commit 1db758543f
5 changed files with 57 additions and 3 deletions

12
iris_c/player.c Normal file
View File

@@ -0,0 +1,12 @@
#include "player.h"
#include <stddef.h>
player_t player_create(uint16_t x, uint16_t y) {
return (player_t){.x = x, .y = y};
}
void player_process_action(player_t *player, const char *action) {
(void)player;
(void)action;
}