mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2025-02-17 23:30:08 +00:00
12 lines
212 B
C
12 lines
212 B
C
|
#pragma once
|
||
|
#include "TPinballComponent.h"
|
||
|
class TPopupTarget :
|
||
|
public TPinballComponent
|
||
|
{
|
||
|
public:
|
||
|
TPopupTarget(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, false)
|
||
|
{
|
||
|
}
|
||
|
};
|
||
|
|