OSDN Git Service

Merge pull request #3569 from sikabane-works/release/3.0.0.88-alpha
[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 class MonsterEntity;
12 monster_lite_type *initialize_monster_lite_type(BIT_FLAGS grid_info, monster_lite_type *ml_ptr, MonsterEntity *m_ptr);