mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
15 lines
242 B
C++
15 lines
242 B
C++
#pragma once
|
|
class TTextBoxMessage
|
|
{
|
|
public:
|
|
TTextBoxMessage* NextMessage;
|
|
char* Text;
|
|
float Time;
|
|
int EndTicks;
|
|
|
|
TTextBoxMessage(const char* text, float time);
|
|
~TTextBoxMessage();
|
|
float TimeLeft() const;
|
|
void Refresh(float time);
|
|
};
|