mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-25 21:50:09 +00:00
12 lines
207 B
C++
12 lines
207 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TFlipper :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TFlipper(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, false)
|
|
{
|
|
}
|
|
};
|