shithub: cstory

ref: b92d6b4e99b639f69653cc70e54fa8eba11e598d
dir: /src/Boss.h/

View raw version
#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();