Files
ld58/code/game/player.h

12 lines
210 B
C
Raw Normal View History

2025-10-05 00:25:37 +01:00
#include "../core/types.h"
2025-10-04 15:53:55 +01:00
#include <SDL3/SDL_events.h>
#include "../core/macros.h"
typedef struct Player Player;
struct Player
{
V2f pos;
};
2025-10-05 00:25:37 +01:00
function void PlayerUpdate(SDL_Event *event, Player *player);