freak-engine/include/player.h

13 lines
183 B
C

#pragma once
#include "entity.h"
struct Player {
struct Entity;
float spd_x;
float spd_y;
float rem_x;
float rem_y;
};
void player_init(struct Player *restrict, int x, int y);