OSDN Git Service

[Refactor] #40570 Renamed rooms.c/h to rooms-builder.c/h
[hengbandforosx/hengbandosx.git] / src / room / rooms-builder.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 void build_lake(player_type *player_ptr, int type);
6 void build_cavern(player_type *player_ptr);
7 void build_small_room(player_type *player_ptr, POSITION x0, POSITION y0);
8 void add_outer_wall(player_type *player_ptr, POSITION x, POSITION y, int light, POSITION x1, POSITION y1, POSITION x2, POSITION y2);
9 POSITION dist2(POSITION x1, POSITION y1, POSITION x2, POSITION y2, POSITION h1, POSITION h2, POSITION h3, POSITION h4);
10 void build_recursive_room(player_type *player_ptr, POSITION x1, POSITION y1, POSITION x2, POSITION y2, int power);
11 void build_room(player_type *player_ptr, POSITION x1, POSITION x2, POSITION y1, POSITION y2);