12 lines
212 B
C++
12 lines
212 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
class TFlagSpinner :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TFlagSpinner(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, false)
|
|
{
|
|
}
|
|
};
|
|
|