SpaceCadetPinball/SpaceCadetPinball/TPlunger.h

12 lines
201 B
C
Raw Normal View History

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