mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
12 lines
201 B
C
12 lines
201 B
C
|
#pragma once
|
||
|
#include "TPinballComponent.h"
|
||
|
|
||
|
class TPlunger :
|
||
|
public TPinballComponent
|
||
|
{
|
||
|
public:
|
||
|
TPlunger(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, false)
|
||
|
{
|
||
|
}
|
||
|
};
|