mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2025-02-18 07:40:07 +00:00
12 lines
205 B
C++
12 lines
205 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TOneway :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TOneway(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, false)
|
|
{
|
|
}
|
|
};
|