OSDN Git Service

[Refactor] #3325 effect_monster_type::note/note_dies をconcptr からstd::string へ変えた
[hengbandforosx/hengbandosx.git] / src / spell / range-calc.h
1 #pragma once
2
3 #include "effect/attribute-types.h"
4 #include "system/angband.h"
5
6 class FloorType;
7 class PlayerType;
8 class projection_path;
9 bool in_disintegration_range(FloorType *floor_ptr, POSITION y1, POSITION x1, POSITION y2, POSITION x2);
10 void breath_shape(PlayerType *player_ptr, const projection_path &path, int dist, int *pgrids, POSITION *gx, POSITION *gy, POSITION *gm, POSITION *pgm_rad, POSITION rad, POSITION y1, POSITION x1, POSITION y2, POSITION x2, AttributeType typ);
11 POSITION dist_to_line(POSITION y, POSITION x, POSITION y1, POSITION x1, POSITION y2, POSITION x2);