1 
2 #ifndef _WHIMSTAR_H
3 #define _WHIMSTAR_H
4 
5 
6 #define MAX_WHIMSTARS			3
7 
8 struct Whimstar
9 {
10 	int x, y;
11 	int xinertia, yinertia;
12 };
13 
14 struct WhimsicalStar
15 {
16 	Whimstar stars[MAX_WHIMSTARS];
17 	int nstars;
18 	int stariter;
19 };
20 
21 
22 
23 #endif
24