ref: f0809fb901caebf2c0d9778e19e6daa777d32da1
dir: /src/Boss.h/
#pragma once #include "NpChar.h" #define BOSS_MAX 20 extern NPCHAR gBoss[BOSS_MAX]; typedef void (*BOSSFUNCTION)(void); extern BOSSFUNCTION gpBossFuncTbl[10]; void InitBossChar(int code); void PutBossChar(int fx, int fy); void SetBossCharActNo(int a); void HitBossBullet(); void ActBossChar(); void HitBossMap();