world_of_cow/cow.h
2023-07-22 15:47:51 +03:00

18 lines
359 B
C

#ifndef COWS_ARE_COOL
#define COWS_ARE_COOL
/*
Helper file(with cow.c) to de-clutter mmn_17.c by taking all cow logic to another file
*/
enum COW_CONTROL {
COW_CONTROL_MOVE,
COW_CONTROL_HEAD,
COW_CONTROL_TAIL,
COW_CONTROL_NONE
};
void drawCow();
void onCowKeyboardInput(char key);
void updateCowControl(enum COW_CONTROL control);
#endif