mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-25 07:24:42 -05:00
11 lines
202 B
C
11 lines
202 B
C
#ifndef PMDSKY_DUNGEON_UTIL_H
|
|
#define PMDSKY_DUNGEON_UTIL_H
|
|
|
|
#include "dungeon.h"
|
|
|
|
static inline struct monster *GetEntInfo(struct entity *ent)
|
|
{
|
|
return ent->info;
|
|
}
|
|
|
|
#endif // PMDSKY_DUNGEON_UTIL_H
|