playergame/src/movement.h

11 lines
172 B
C
Raw Normal View History

#ifndef MOVEMENT_H
#define MOVEMENT_H
#include "entity.h"
int attempt_move(struct entity *fuck, int units, int direction);
void all_entity(struct entity *fuck);
#endif