mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2026-08-15 05:16:36 +00:00
11 lines
272 B
C++
11 lines
272 B
C++
#include "pch.h"
|
|
#include "TEdgeSegment.h"
|
|
|
|
TEdgeSegment::TEdgeSegment(TCollisionComponent* collComp, char* someFlag, unsigned visualFlag)
|
|
{
|
|
this->CollisionComponent = collComp;
|
|
this->PinbCompFlag2Ptr = someFlag;
|
|
this->VisualFlag = visualFlag;
|
|
this->Unknown3_0 = 0;
|
|
}
|