OSDN Git Service

Merge branch 'develop' into feature/Monster-Sweep-Grid-Adjustment
[hengbandforosx/hengbandosx.git] / src / monster-floor / monster-lite-util.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 struct monster_lite_type {
6     bool mon_invis;
7     POSITION mon_fy;
8     POSITION mon_fx;
9 };
10
11 struct monster_type;
12 monster_lite_type *initialize_monster_lite_type(BIT_FLAGS grid_info, monster_lite_type *ml_ptr, monster_type *m_ptr);