1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-06-25 23:42:09 +02:00
SpaceCadetPinball/SpaceCadetPinball/TTextBox.h

14 lines
242 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;
};