Panel_DestroyCompass

This commit is contained in:
krystalgamer 2024-05-24 16:57:15 +02:00
parent 13d84ab9c4
commit fff1e4337b
4 changed files with 24 additions and 2 deletions

View File

@ -1 +1,10 @@
#include "flash.h"
#include "flash.h"
static int gFadeStatus;
// @NotOk
// global
int Flash_FadeFinished(void)
{
return gFadeStatus == 0;
}

View File

@ -3,4 +3,8 @@
#ifndef FLASH_H
#define FLASH_H
#endif
#include "export.h"
EXPORT int Flash_FadeFinished(void);
#endif

View File

@ -4,3 +4,11 @@
// @TODO
void Panel_CreateHealthBar(const CBody*, int)
{}
static unsigned char gPanelStatus;
// @NotOk
// Global
void Panel_DestroyCompass(void)
{
gPanelStatus = 0;
}

View File

@ -8,5 +8,6 @@
#include "ob.h"
EXPORT void Panel_CreateHealthBar(const CBody*, int);
EXPORT void Panel_DestroyCompass(void);
#endif