--- /dev/null
+;; (tile (id INT)
+;; (directions TOP RIGHT DOWN LEFT)
+;;
+(supertux-worldmap-tiles
+ (tile (id 0)
+ (image "ground.png")
+ (north #f)
+ (south #f)
+ (east #f)
+ (west #f)
+ (stop #f))
+ (tile (id 1)
+ (image "road_h.png")
+ (north #f)
+ (south #f)
+ (west #t)
+ (east #t)
+ (stop #f))
+ (tile (id 2)
+ (image "road_v.png")
+ (north #t)
+ (south #t)
+ (west #f)
+ (east #f)
+ (stop #f))
+ (tile (id 3)
+ (image "road_ws.png")
+ (north #f)
+ (south #t)
+ (west #t)
+ (east #f)
+ (stop #t))
+ (tile (id 4)
+ (image "road_cross.png")
+ (north #t)
+ (south #t)
+ (west #t)
+ (east #t)
+ (stop #t))
+ (tile (id 5)
+ (image "road_e.png")
+ (north #f)
+ (south #f)
+ (west #f)
+ (east #t)
+ (stop #t))
+ (tile (id 6)
+ (image "road_h_stop.png")
+ (north #f)
+ (south #f)
+ (west #t)
+ (east #t)
+ (stop #t))
+ (tile (id 7)
+ (image "road_v_stop.png")
+ (north #t)
+ (south #t)
+ (west #f)
+ (east #f)
+ (stop #t))
+
+)
+
+;; EOF ;;