1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-06-16 18:20:55 +02:00
SpaceCadetPinball/SpaceCadetPinball/TTextBoxMessage.h

15 lines
242 B
C
Raw Normal View History

#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);
};