diff options
Diffstat (limited to 'apps/xracer/maps.c')
| -rw-r--r-- | apps/xracer/maps.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/xracer/maps.c b/apps/xracer/maps.c new file mode 100644 index 0000000..770f3a6 --- /dev/null +++ b/apps/xracer/maps.c @@ -0,0 +1,15 @@ +#include "xracer.h" +#include "maps.h" + +struct road_section loop_map[10] = { + { 0, 300, 0, 0 }, + { 0, 100, 0, 1 << (FRACBITS) }, + { 0, 200, 0, 0 }, + { 0, 100, 0, 1 << (FRACBITS) }, + { 0, 600, 0, 0 }, + { 0, 100, 0, 1 << (FRACBITS) }, + { 0, 200, 0, 0 }, + { 0, 100, 0, 1 << (FRACBITS) }, + { 0, 300, 0, 0 }, + { 0, DRAW_DIST, 0, 0} +}; |