diff options
| author | Sergeanur <s.anureev@yandex.ua> | 2020-11-14 22:13:32 +0200 |
|---|---|---|
| committer | Sergeanur <s.anureev@yandex.ua> | 2020-11-15 19:51:35 +0200 |
| commit | a6f5f4634c63a515196a0f650682953356cb8e18 (patch) | |
| tree | 806ca1627dbab6626634822037688aff376038c2 /src/collision/ColPoint.cpp | |
| parent | Merge pull request #797 from theR4K/master (diff) | |
| download | re3-a6f5f4634c63a515196a0f650682953356cb8e18.tar.gz | |
Make collision code placement more like original (+ small fixes)
Diffstat (limited to 'src/collision/ColPoint.cpp')
| -rw-r--r-- | src/collision/ColPoint.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/collision/ColPoint.cpp b/src/collision/ColPoint.cpp new file mode 100644 index 00000000..fbf9e8c3 --- /dev/null +++ b/src/collision/ColPoint.cpp @@ -0,0 +1,16 @@ +#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; +} |
