SpaceCadetPinball/SpaceCadetPinball/TGate.h

12 lines
198 B
C
Raw Normal View History

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