Files
dca3-game/miami/collision/ColPoint.cpp
Stefanos Kornilios Mitsis Poiitidis 09477b5c78 Add miami source
2025-02-22 12:32:51 +02:00

17 lines
283 B
C++

#include "common.h"
#include "ColPoint.h"
CColPoint&
CColPoint::operator=(const CColPoint &other)
{
point = other.point;
normal = other.normal;
surfaceA = other.surfaceA;
pieceA = other.pieceA;
surfaceB = other.surfaceB;
pieceB = other.pieceB;
// no depth?
return *this;
}