mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
31 lines
529 B
C
31 lines
529 B
C
#pragma once
|
|
|
|
|
|
#ifndef PANEL_H
|
|
#define PANEL_H
|
|
|
|
#include "export.h"
|
|
#include "ob.h"
|
|
#include "texture.h"
|
|
|
|
|
|
struct SAnimFrame
|
|
{
|
|
char OffX;
|
|
char OffY;
|
|
unsigned char Width;
|
|
unsigned char Height;
|
|
Texture *pTexture;
|
|
};
|
|
|
|
EXPORT void Panel_CreateHealthBar(const CBody*, int);
|
|
EXPORT void Panel_DestroyCompass(void);
|
|
EXPORT void Panel_DestroyHealthbar(void);
|
|
EXPORT int Panel_DrawTexturedPoly(SAnimFrame*, int);
|
|
EXPORT int Panel_DrawTexturedPoly(Texture*, int);
|
|
|
|
void validate_SAnimFrame(void);
|
|
void validate_Texture(void);
|
|
|
|
#endif
|