forked from nakidai/csnake
10 lines
110 B
C
10 lines
110 B
C
|
#ifndef __FOOD_H__
|
||
|
#define __FOOD_H__
|
||
|
|
||
|
typedef struct food_t
|
||
|
{
|
||
|
int x, y;
|
||
|
} Food;
|
||
|
|
||
|
#endif /* __FOOD_H__ */
|