Files
SpaceCadetPinballPPC/SpaceCadetPinball/TTextBox.h
oz d83c4e2b26 Proj v1, ready.
port_draw in multiple T classes.
pb v1.
proj v1, ready.
WinMain v3.
2020-11-29 18:50:49 +03:00

16 lines
296 B
C++

#pragma once
#include "TPinballComponent.h"
class TTextBox :
public TPinballComponent
{
public:
TTextBox(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, true)
{
}
int Message(int a2, float a3) override;
void Clear();
void Display(char* text, float time);
};