SpaceCadetPinball/SpaceCadetPinball/TBumper.h

12 lines
202 B
C
Raw Normal View History

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