aboutsummaryrefslogtreecommitdiff
path: root/location.h
blob: b88c026293a9db1110846628676e56f31c5bd8ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* provide the GTNW with some geographical data to draw the missiles */
struct location_t {
  const char* name;
  int x;
  int y; /* x,y-coords on the map */
};
struct location_t world[]={
  /* US cities */
  {"las vegas", 5, 7},
  {"seattle", 3, 2},
  {"new york", 35, 4},
  {"new orleans", 25, 10},
  {"washington", 33, 6},
  {"washington dc", 33, 6},
  {"winston-salem", 30, 7},
  {"san francisco", 1, 6},
  {"chicago", 24, 4},
 
  /* Soviet cities */
  /* NOTE: These are not neccessarily correct. I simply eyed them relative to Murmansk */
  {"murmansk", 2, 73},
  {"moscow", 5, 70},
  {"minsk", 4, 66},
};