OSDN Git Service

[Merge] #40883 Win版が通る所までマージ完了.他環境でのチェックや他見落としはこれからチェックする。 / Merge is completed until...
[hengbandforosx/hengbandosx.git] / src / floor / fixed-map-generator.h
1 #pragma once
2
3 #include "system/angband.h"
4 #include "info-reader/parse-error-types.h"
5
6 // Quest/Town/World Generator
7 typedef struct qtwg_type {
8     char *buf;
9     int ymin;
10     int xmin;
11     int ymax;
12     int xmax;
13     int *y;
14     int *x;
15 } qtwg_type;
16
17 typedef errr (*process_dungeon_file_pf)(player_type *, concptr, int, int, int, int);
18
19 qtwg_type *initialize_quest_generator_type(qtwg_type *qg_ptr, char *buf, int ymin, int xmin, int ymax, int xmax, int *y, int *x);
20 parse_error_type generate_fixed_map_floor(player_type *player_ptr, qtwg_type *qg_ptr, process_dungeon_file_pf parse_fixed_map);