wings/include/wings.h

14 lines
159 B
C
Raw Normal View History

2017-04-17 16:55:21 +02:00
#ifndef WINGS
#define WINGS
2017-04-19 20:30:58 +02:00
typedef struct Plane
{
short x;
short y;
unsigned char dir;
unsigned char life;
// align
} Plane;
2017-04-17 16:55:21 +02:00
#endif