SpaceCadetPinball/SpaceCadetPinball/TKickout.h

12 lines
219 B
C
Raw Normal View History

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