hyperultra/src/player.h

13 lines
155 B
C

#pragma once
typedef struct {
double scale_x;
double scale_y;
int dirx;
} Player;
struct Entity;
struct Game;
void player_init(struct Entity *this);