mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-01 16:33:39 +01:00
19 lines
456 B
C++
19 lines
456 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TLine;
|
|
|
|
class TOneway : public TCollisionComponent
|
|
{
|
|
public:
|
|
TOneway(TPinballTable* table, int groupIndex);
|
|
~TOneway() override = default;
|
|
void Collision(TBall* ball, vector_type* nextPosition, vector_type* direction, float coef,
|
|
TEdgeSegment* edge) override;
|
|
void put_scoring(int index, int score) override;
|
|
int get_scoring(int index) override;
|
|
|
|
TLine* Line;
|
|
int Scores[6]{};
|
|
};
|