TTextBoxMessage v1, ready.

TTextBox v1.
This commit is contained in:
oz
2020-12-03 17:47:36 +03:00
parent 9ffab95d8e
commit fe66d33768
22 changed files with 419 additions and 57 deletions

View File

@@ -0,0 +1,14 @@
#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);
};