OSDN Git Service

Merge pull request #41491 (taotao/hengband/fix-impure_calc_num_blow into develop).
[hengband/hengband.git] / src / monster-floor / monster-lite-util.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 typedef struct monster_lite_type {
6     bool mon_invis;
7     POSITION mon_fy;
8     POSITION mon_fx;
9 } monster_lite_type;
10
11 typedef struct monster_type monster_type;
12 monster_lite_type *initialize_monster_lite_type(floor_type *floor_ptr, monster_lite_type *ml_ptr, monster_type *m_ptr);