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.
16 lines
439 B
16 lines
439 B
#ifndef GLOBAL_H_
|
|
#define GLOBAL_H_
|
|
#define WORD_WIDTH 32;
|
|
|
|
typedef struct {unsigned short x; unsigned short y;} point_t;
|
|
|
|
void setAlienBlockPosition(unsigned short x, unsigned short y);
|
|
unsigned short getAlienBlockPositionX();
|
|
unsigned short getAlienBlockPositionY();
|
|
|
|
void setTankPosition(unsigned short x, unsigned short y);
|
|
unsigned short getTankPositionX();
|
|
unsigned short getTankPositionY();
|
|
|
|
|
|
#endif /* GLOBAL_H_ */
|
|
|