up network version
[carveJwlIkooP6JGAAIwe30JlM.git] / skaterift.h
index f96d17c61b470fae836be8a9cdb2bf592d58bd90..ebab76734b6d909ca475dc5b4b1dce67b16f9379 100644 (file)
@@ -11,6 +11,7 @@
 #include "vg/vg.h"
 #include "world.h"
 #include "addon.h"
+#include "trail.h"
 
 enum skaterift_rt {
    k_skaterift_rt_workshop_preview,
@@ -68,9 +69,17 @@ struct{
    int demo_mode;
 
    audio_channel *aud_air;
+   const char *hub_world;
+
+   struct trail_system test_trail;
 }
 static skaterift = { 
-   .op = k_async_op_clientloading, .time_rate = 1.0f, .demo_mode = 1 };
+   .op = k_async_op_clientloading, .time_rate = 1.0f, .demo_mode = 1,
+   .hub_world = "maps/dev_hub",
+   .test_trail = {
+      .max = 80
+   }
+};
 
 /* Skaterift api */
 static void skaterift_change_world_start( addon_reg *reg );