mirror of
https://github.com/gwenhael-le-moine/c-urs_-toil-s.git
synced 2024-12-27 09:58:44 +01:00
untabify
This commit is contained in:
parent
c5e974a15d
commit
c27494e73d
1 changed files with 299 additions and 298 deletions
19
star.c
19
star.c
|
@ -7,17 +7,18 @@
|
|||
#define LEVEL_WIDTH 16
|
||||
|
||||
typedef enum {
|
||||
WALL='#',
|
||||
BALL='@',
|
||||
CUBE='H',
|
||||
VOID=' ',
|
||||
GIFT='*'
|
||||
WALL ='#',
|
||||
BALL ='@',
|
||||
CUBE ='H',
|
||||
VOID =' ',
|
||||
GIFT ='*'
|
||||
} cell;
|
||||
|
||||
typedef enum {
|
||||
UP='u',
|
||||
DOWN='d',
|
||||
LEFT='l',
|
||||
RIGHT='r'
|
||||
UP ='u',
|
||||
DOWN ='d',
|
||||
LEFT ='l',
|
||||
RIGHT ='r'
|
||||
} direction;
|
||||
|
||||
struct state {
|
||||
|
|
Loading…
Reference in a new issue