mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-12-21 21:32:21 -05:00
12 lines
171 B
C
12 lines
171 B
C
|
#pragma once
|
||
|
#include "TPinballComponent.h"
|
||
|
|
||
|
class TBall :
|
||
|
public TPinballComponent
|
||
|
{
|
||
|
public :
|
||
|
TBall(TPinballTable* table): TPinballComponent(table, -1, false)
|
||
|
{
|
||
|
}
|
||
|
};
|