mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
13 lines
304 B
C++
13 lines
304 B
C++
#pragma once
|
|
#include "TRollover.h"
|
|
|
|
class TTripwire :
|
|
public TRollover
|
|
{
|
|
public:
|
|
TTripwire(TPinballTable* table, int groupIndex);
|
|
~TTripwire() override = default;
|
|
void Collision(TBall* ball, vector2* nextPosition, vector2* direction, float distance,
|
|
TEdgeSegment* edge) override;
|
|
};
|