SpaceCadetPinball/SpaceCadetPinball/high_score.h

9 lines
188 B
C
Raw Normal View History

2020-12-06 14:21:56 +01:00
#pragma once
class high_score
{
public:
static int read(CHAR* table, int* ptrToSmth);
static int write(CHAR* table, int* ptrToSmth);
static void show_high_score_dialog(CHAR* table);
};