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

key mapper dialog, ready.

This commit is contained in:
oz 2020-12-13 16:05:19 +03:00
parent 2da95a2e8a
commit 12066963f0
8 changed files with 311 additions and 50 deletions

View file

@ -1,4 +1,5 @@
#pragma once
#include "pinball.h"
struct high_score_struct
{
@ -6,12 +7,6 @@ struct high_score_struct
int Score;
};
struct winhelp_entry
{
int ControlId;
int ContextId;
};
class high_score
{
@ -34,5 +29,5 @@ private :
static int position;
static LPCSTR default_name;
static high_score_struct* dlg_hst;
static winhelp_entry winHelpArgs[21];
static winhelp_entry help[21];
};