Une-realite-trop-belle-pour.../src/player.h

24 lines
264 B
C

#ifndef PLAYER_H
#define PLAYER_H
#include "animation.h"
typedef enum {
L_BOY,
L_GIRL,
L_AMOUNT
} Skin;
typedef enum {
A_JUMP,
A_RUN,
A_AMOUNT
} Action;
typedef struct {
Anim anim;
Skin skin;
Action action;
} Player;
#endif