OSDN Git Service

Merge branch 'develop' into macos-develop
[hengbandforosx/hengbandosx.git] / src / main / angband-initializer.h
1 #pragma once
2 /*!
3  * @file angband-initializer.h
4  * @brief 変愚蛮怒のシステム初期化処理ヘッダファイル
5  * @date 2015/01/02
6  * @author
7  * Copyright (c) 2000 Robert Ruehlmann
8  * @details
9  * This software may be copied and distributed for educational, research,
10  * and not for profit purposes provided that this copyright and statement
11  * are included in all such copies.
12  */
13
14 #include <filesystem>
15
16 class PlayerType;
17 void init_angband(PlayerType *player_ptr, bool no_term);
18 void init_file_paths(const std::filesystem::path &libpath, const std::filesystem::path &varpath);
19 void create_needed_dirs();