mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 23:20:19 +01:00
11 lines
182 B
C++
11 lines
182 B
C++
#pragma once
|
|
#include "TRollover.h"
|
|
|
|
class TLightRollover :
|
|
public TRollover
|
|
{
|
|
public:
|
|
TLightRollover(TPinballTable* table, int groupIndex) : TRollover(table, groupIndex)
|
|
{
|
|
}
|
|
};
|