OSDN Git Service

f42d35129f229983a14dc07202a1e3aec0782170
[hengband/hengband.git] / src / main / init.h
1 /*!
2  * @brief ゲームデータ初期化処理のヘッダファイル
3  * @date 2015/01/02
4  * @author
5  * Copyright (c) 2000 Robert Ruehlmann
6  * @details
7  * This software may be copied and distributed for educational, research,
8  * and not for profit purposes provided that this copyright and statement
9  * are included in all such copies.
10  */
11
12 #ifndef INCLUDED_INIT_H
13 #define INCLUDED_INIT_H
14
15 #include "system/angband.h"
16
17 typedef void (*process_autopick_file_command_pf)(char *);
18 void init_angband(player_type *player_ptr, process_autopick_file_command_pf process_autopick_file_command);
19 void init_file_paths(char *path);
20 errr init_v_info(player_type *player_ptr);
21 errr init_buildings(void);
22
23 #endif /* INCLUDED_INIT_H */