Start working on the drill

This commit is contained in:
KikooDX 2020-05-16 19:04:30 +02:00
parent 9c1b49fa33
commit 722d45ddd4
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,4 @@
enum Direction;
void jump_test(char *jump_pressed, char *jump_buffer, unsigned int *jump_hold,
char enable_up_key);
void set_start_pos(int *start_x, int *start_y, int x, int y);

View File

@ -1,6 +1,14 @@
#include <gint/keyboard.h>
#include "player.h"
enum Direction
{
up,
down,
left,
right
};
void jump_test(char *jump_pressed, char *jump_buffer, unsigned int *jump_hold,
char enable_up_key)
{