SpaceCadetPinball/SpaceCadetPinball/TTextBox.h

16 lines
296 B
C
Raw Normal View History

#pragma once
#include "TPinballComponent.h"
2020-11-07 16:41:14 +01:00
class TTextBox :
2020-11-07 16:41:14 +01:00
public TPinballComponent
{
public:
2020-11-08 16:37:59 +01:00
TTextBox(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, true)
{
}
2020-11-07 16:41:14 +01:00
int Message(int a2, float a3) override;
void Clear();
void Display(char* text, float time);
2020-11-07 16:41:14 +01:00
};