mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2025-12-13 14:41:00 +01:00
Added icon, textbox font.
TTextBox ready.
This commit is contained in:
parent
b412563ee3
commit
fe254ef03c
11 changed files with 207 additions and 11 deletions
|
|
@ -24,8 +24,20 @@ struct scoreStruct
|
|||
|
||||
struct score_msg_font_type
|
||||
{
|
||||
int GapWidth;
|
||||
int Height;
|
||||
gdrv_bitmap8* Chars[128];
|
||||
};
|
||||
|
||||
struct score_font_rc
|
||||
{
|
||||
short Header0;
|
||||
short Header1;
|
||||
short Height;
|
||||
char SomeLen[128];
|
||||
};
|
||||
|
||||
|
||||
class score
|
||||
{
|
||||
public:
|
||||
|
|
@ -33,6 +45,6 @@ public:
|
|||
static int init();
|
||||
static scoreStruct* create(LPCSTR fieldName, gdrv_bitmap8* renderBgBmp);
|
||||
static scoreStruct* dup(scoreStruct* score, int scoreIndex);
|
||||
static HRSRC load_msg_font(LPCSTR lpName);
|
||||
static void load_msg_font(LPCSTR lpName);
|
||||
static void unload_msg_font();
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue