1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2025-12-16 23:30:59 +01:00

winmain v2.

FuncStats doc.
This commit is contained in:
oz 2020-11-07 18:41:14 +03:00
parent 7db64ae1c6
commit a925b6137f
19 changed files with 126 additions and 22 deletions

View file

@ -1,6 +1,6 @@
#pragma once
struct scoreStruct
struct scoreStruct
{
int Unknown1;
int Unknown2;
@ -24,7 +24,7 @@ struct scoreStruct
class score
{
public:
static int init();
static scoreStruct* create(LPCSTR fieldName, int renderBgBmp);
static scoreStruct* dup(scoreStruct* score, int scoreIndex);
};