You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
202 B
12 lines
202 B
9 years ago
|
#ifndef MODE_SNAKE_H
|
||
|
#define MODE_SNAKE_H
|
||
|
|
||
|
#include "main.h"
|
||
|
|
||
|
void mode_snake_init(void);
|
||
|
void mode_snake_start(void);
|
||
|
void mode_snake_stop(void);
|
||
|
void mode_snake_btn(char key);
|
||
|
|
||
|
#endif // MODE_SNAKE_H
|