mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-22 12:10:10 +00:00
fe66d33768
TTextBox v1.
15 lines
236 B
C++
15 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);
|
|
};
|