mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2026-08-16 15:00:07 +02:00
11 lines
206 B
C++
11 lines
206 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
class TRollover :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TRollover(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, false)
|
|
{
|
|
}
|
|
};
|
|
|