server loopback tool
[carveJwlIkooP6JGAAIwe30JlM.git] / world_info.h
index 012199eeea5510d93a9d743f9f47144f923ccc17..3b29b1fedf60a82c7d215059158c57c6daf0060a 100644 (file)
@@ -5,48 +5,39 @@
 #ifndef WORLD_INFO_H
 #define WORLD_INFO_H
 
-#include "vg/vg_stdint.h"
-
 /* Purely an information header, shares common strings across client and 
  * server programs. */
 
-static struct track_info
+struct track_info
 {
    const char *name, 
               *achievement_id;
-   int push;
 }
-track_infos[] = 
+static track_infos[] = 
 {
    {
       .name = "Megapark Green",
       .achievement_id = "ROUTE_MPG",
-      .push = 1
    },
    {
       .name = "Megapark Blue",
       .achievement_id = "ROUTE_MPB",
-      .push = 1
    },
    {
       .name = "Megapark Yellow",
       .achievement_id = "ROUTE_MPY",
-      .push = 1
    },
    {
       .name = "Megapark Red",
       .achievement_id = "ROUTE_MPR",
-      .push = 1
    },
    {
       .name = "Coastal Run",
       .achievement_id = "ROUTE_TC",
-      .push = 1
    },
    {
       .name = "Docks Jumps",
       .achievement_id = "ROUTE_TO",
-      .push = 1
    }
 };