1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-09-08 01:50:24 +02:00
SpaceCadetPinball/SpaceCadetPinball/TTextBoxMessage.h
Muzychenko Andrey 34a1e32843 Added in-game credits from Full Tilt.
This was kind-of requested a long time ago.
2023-03-17 16:38:08 +03:00

15 lines
279 B
C++

#pragma once
class TTextBoxMessage
{
public:
TTextBoxMessage* NextMessage;
char* Text;
float Time;
int EndTicks;
bool LowPriority;
TTextBoxMessage(const char* text, float time, bool lowPriority);
~TTextBoxMessage();
float TimeLeft() const;
void Refresh(float time);
};