1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-09-15 21:00:24 +02:00
SpaceCadetPinball/SpaceCadetPinball/TTripwire.h
2022-05-20 11:51:00 +03:00

12 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;
};