1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-07-01 01:35:30 +02:00
SpaceCadetPinball/SpaceCadetPinball/pinball.h
Muzychenko Andrey 64c3f2031b Added “Prefer 3DPB game data” option.
Useful for quickly switching between the two datasets.
3DPB and FT data can be stored in one folder without collisions.
2021-11-21 15:40:56 +03:00

22 lines
447 B
C++

#pragma once
class TTextBox;
class pinball
{
public:
static int quickFlag;
static TTextBox* InfoTextBox;
static TTextBox* MissTextBox;
static int RightShift;
static int LeftShift;
static std::string BasePath;
static char* get_rc_string(int uID, int a2);
static int get_rc_int(int uID, int* dst);
static std::string make_path_name(const std::string& fileName);
private:
static char getRcBuffer[256 * 6];
static int rc_string_slot;
};