OSDN Git Service

Merge branch 'develop' into macos-develop
[hengbandforosx/hengbandosx.git] / src / info-reader / fixed-map-parser.h
1 #pragma once
2
3 #include <set>
4 #include <string_view>
5
6 class PlayerType;
7 enum parse_error_type : int;
8 enum class QuestId : short;
9 parse_error_type parse_fixed_map(PlayerType *player_ptr, std::string_view name, int ymin, int xmin, int ymax, int xmax);
10 std::set<QuestId> parse_quest_info(std::string_view file_name);