1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2025-12-15 07:00:58 +01:00

render v2, ready

This commit is contained in:
oz 2020-11-15 17:39:00 +03:00
parent 79bb0adab8
commit a4c64cc4c8
14 changed files with 630 additions and 117 deletions

View file

@ -1,10 +1,11 @@
#pragma once
#include "gdrv.h"
struct scoreStruct
{
int Unknown1;
int Unknown2;
int RenderBgBmp;
gdrv_bitmap8* BackgroundBmp;
int Short1;
int Short2;
int Short3;
@ -25,6 +26,6 @@ class score
{
public:
static int init();
static scoreStruct* create(LPCSTR fieldName, int renderBgBmp);
static scoreStruct* create(LPCSTR fieldName, gdrv_bitmap8* renderBgBmp);
static scoreStruct* dup(scoreStruct* score, int scoreIndex);
};