Touhou/include/player.h

14 lines
165 B
C
Raw Normal View History

2020-10-24 10:54:54 +02:00
#ifndef _PLAYER_H
#define _PLAYER_H
#include "utils/vector.h"
typedef struct {
float x, y;
char power;
char lives;
char bombs;
} player_t;
#endif