mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-12-19 04:12:40 -05:00
fe66d33768
TTextBox v1.
14 lines
236 B
C++
14 lines
236 B
C++
#pragma once
|
|
class TTextBoxMessage
|
|
{
|
|
public:
|
|
TTextBoxMessage* NextMessage;
|
|
char* Text;
|
|
float Time;
|
|
int EndTicks;
|
|
|
|
TTextBoxMessage(char* text, float time);
|
|
~TTextBoxMessage();
|
|
float TimeLeft() const;
|
|
void Refresh(float time);
|
|
};
|