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