1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-06-25 23:42:09 +02:00
SpaceCadetPinball/SpaceCadetPinball/TTextBoxMessage.h
2021-10-26 08:12:37 +03:00

15 lines
248 B
C++

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