shithub: cstory

ref: 6e53250a2022216b383ea321af3c143c5fb13e5e
dir: /src/BossLife.h/

View raw version
#pragma once

#include "WindowsWrapper.h"

typedef struct BOSSLIFE	// Not the original struct name
{
	BOOL flag;
	int *pLife;
	int max;
	int br;
	int count;
} BOSSLIFE;

extern BOSSLIFE gBL;

void InitBossLife(void);
BOOL StartBossLife(int code_event);
BOOL StartBossLife2(void);
void PutBossLife(void);