SpaceCadetPinball/SpaceCadetPinball/TPopupTarget.h

12 lines
212 B
C
Raw Normal View History

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