1
0
mirror of https://github.com/td512/re3.git synced 2026-03-03 15:42:53 +00:00
Files
td512.re3/src/collision/ColPoint.cpp

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