mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
12 lines
202 B
C++
12 lines
202 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TDrain :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TDrain(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, true)
|
|
{
|
|
}
|
|
};
|