Apply the new ground_level method.
[crawl.git] / crawl-ref / source / ng-setup.h
blob942b640454a8a3abdc2ae0dcfa2861e8147381d2
1 /*
2 * File: ng-setup.h
3 * Summary: Setup "you" for a new game.
4 */
6 #ifndef NG_SETUP_H
7 #define NG_SETUP_H
9 void give_basic_mutations(species_type speci);
11 void newgame_make_item(int slot, equipment_type eqslot,
12 object_class_type base,
13 int sub_type, int replacement = -1,
14 int qty = 1, int plus = 0, int plus2 = 0,
15 bool force_tutorial = false);
17 void newgame_give_item(object_class_type base, int sub_type,
18 int qty = 1, int plus = 0, int plus2 = 0);
20 struct newgame_def;
21 void setup_game(const newgame_def& ng);
22 void unfocus_stats();
23 #endif