1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-11-01 01:00:21 +01:00
SpaceCadetPinball/SpaceCadetPinball/pinball.h
Muzychenko Andrey c63c6701ac gdrv: RGBA buffers, pre-applied palettes, SDL bitmap origin.
Refactored partman.
Added sprite viewer.
2021-09-21 13:14:39 +03:00

20 lines
417 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 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;
};