mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
64c3f2031b
Useful for quickly switching between the two datasets. 3DPB and FT data can be stored in one folder without collisions.
22 lines
447 B
C++
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;
|
|
};
|