mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-12-19 04:12:40 -05:00
11 lines
200 B
C++
11 lines
200 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TGate :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TGate(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, true)
|
|
{
|
|
}
|
|
};
|