mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
5e94b5b513
Placeholders for T piball component classes.
12 lines
198 B
C++
12 lines
198 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
class TGate :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TGate(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, false)
|
|
{
|
|
}
|
|
};
|
|
|