mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-22 03:55:21 +00:00
18 lines
421 B
C++
18 lines
421 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TDrain :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TDrain(TPinballTable* table, int groupIndex);
|
|
int Message(int code, float value) override;
|
|
void Collision(TBall* ball, vector_type* nextPosition, vector_type* direction, float coef,
|
|
TEdgeSegment* edge) override;
|
|
|
|
static void TimerCallback(int timerId, void* caller);
|
|
|
|
float TimerTime;
|
|
int Timer;
|
|
};
|