SpaceCadetPinball/SpaceCadetPinball/pinball.h

23 lines
461 B
C
Raw Normal View History

2020-10-25 15:17:26 +01:00
#pragma once
class TTextBox;
enum class Msg : int;
2020-11-04 14:22:52 +01:00
2020-10-25 15:17:26 +01:00
class pinball
{
public:
static int quickFlag;
2020-11-04 14:22:52 +01:00
static TTextBox* InfoTextBox;
static TTextBox* MissTextBox;
2020-11-06 14:56:32 +01:00
static int RightShift;
static int LeftShift;
static std::string BasePath;
2020-11-06 14:56:32 +01:00
static char* get_rc_string(Msg uID);
static int get_rc_int(Msg uID, int* dst);
static std::string make_path_name(const std::string& fileName);
2020-10-25 15:17:26 +01:00
private:
2020-11-05 16:44:34 +01:00
static char getRcBuffer[256 * 6];
2020-11-04 14:22:52 +01:00
static int rc_string_slot;
2020-10-25 15:17:26 +01:00
};