OSDN Git Service

Changed Japanese translation for "New" to match what was suggested in hengbandforosx...
[hengbandforosx/hengbandosx.git] / src / geometry.h
1 #pragma once
2
3 DIRECTION coords_to_dir(POSITION y, POSITION x);
4
5 //!< 対象グリッドの一覧をまとめる構造体
6 typedef struct
7 {
8         POSITION_IDX n; //!< Array of grids for use by various functions (see grid.c")
9         POSITION y[TEMP_MAX];
10         POSITION x[TEMP_MAX];
11 } pos_list;
12
13 //!< ターゲット指定構造体
14 typedef struct
15 {
16         DIRECTION dir;
17         POSITION y;
18         POSITION x;
19 } target_dir;