This repository has been archived on 2022-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
jtmm2-old/include/player_vars.h

13 lines
212 B
C

#ifndef _DEF_PLAYER_VARS
#define _DEF_PLAYER_VARS
typedef struct Player_vars {
float friction;
int acceleration;
int jump_spd;
int gravity;
int gravity_scalar;
} Player_vars;
#endif /* _DEF_PLAYER_VARS */