summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ng-input.h
blob: b776bca006edb345459557370585b9b0c3419d58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef NG_INPUT_H
#define NG_INPUT_H

struct newgame_def;

void opening_screen();
bool validate_player_name(const string &name, bool verbose);
bool is_good_name(const string &name, bool blankOK, bool verbose);
void enter_player_name(newgame_def* ng);

#endif