00001 /* 00002 * File: tutorial.h 00003 * Summary: Collection of tutorial related functions. 00004 */ 00005 00006 #ifndef TUTORIAL_H 00007 #define TUTORIAL_H 00008 00009 class map_def; 00010 // All available maps. 00011 std::vector<const map_def *> get_tutorial_maps(); 00012 00013 // Set and get the current map. Used to transfer 00014 // map choice from game choice to level gen. 00015 void set_tutorial_map(const std::string& map); 00016 std::string get_tutorial_map(); 00017 00018 #endif