mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 23:20:19 +01:00
5e94b5b513
Placeholders for T piball component classes.
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)
|
|
{
|
|
}
|
|
};
|
|
|