SpaceCadetPinball/SpaceCadetPinball/TFlipper.h

12 lines
204 B
C
Raw Normal View History

#pragma once
#include "TPinballComponent.h"
class TFlipper :
public TPinballComponent
{
public:
TFlipper(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, false)
{
}
};