mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-12-20 21:02:21 -05:00
11 lines
205 B
C++
11 lines
205 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TOneway :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TOneway(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, false)
|
|
{
|
|
}
|
|
};
|