Give survival hints in tutorial death message.
[crawl.git] / crawl-ref / source / tutorial.h
blobdf1a63d82859010f56187ba0fba1dc27119c9d14
1 /*
2 * File: tutorial.h
3 * Summary: Collection of tutorial related functions.
4 */
6 #ifndef TUTORIAL_H
7 #define TUTORIAL_H
9 class map_def;
10 // All available maps.
11 std::vector<const map_def *> get_tutorial_maps();
13 // Set and get the current map. Used to transfer
14 // map choice from game choice to level gen.
15 void set_tutorial_map(const std::string& map);
16 std::string get_tutorial_map();
18 // Set player hunger from the tutorial map.
19 void set_tutorial_hunger(int hunger);
21 void tutorial_death_message();
22 #endif