mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2025-02-16 23:00:13 +00:00
12 lines
200 B
C++
12 lines
200 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
class TDrain :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TDrain(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, false)
|
|
{
|
|
}
|
|
};
|
|
|