SpaceCadetPinball/SpaceCadetPinball/TDrain.h

12 lines
200 B
C
Raw Normal View History

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