mirror of
https://github.com/halpz/re3.git
synced 2025-04-25 03:57:45 +00:00
# Conflicts: # premake5.lua # src/CMakeLists.txt # src/collision/Collision.cpp # src/core/Collision.h
17 lines
283 B
C++
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;
|
|
}
|