OSDN Git Service

[Fix] クイックメッセージの挙動が以前と異なる
[hengband/hengband.git] / src / main / angband-initializer.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, char *varpath);
20
21 #endif /* INCLUDED_INIT_H */