11 lines
206 B
C
11 lines
206 B
C
#include "core/types.h"
|
|
#include <SDL3/SDL_events.h>
|
|
#include "../core/macros.h"
|
|
|
|
typedef struct Player Player;
|
|
struct Player
|
|
{
|
|
V2f pos;
|
|
};
|
|
|
|
function void PlayerUpdate(SDL_Event *event, Player *player); |