diff options
author | Samuel Barney <samjbarney@gmail.com> | 2013-11-05 22:11:13 +0100 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2013-11-05 22:11:13 +0100 |
commit | eefc6d37efd266edad5d1a2cbc2ea6e543e60cc2 (patch) | |
tree | dc8c1026776784a7f67e70facda0e2572ee820b7 /source/Tracer.h | |
parent | Added more documentation. Changed cTracer::Trace to return a bool instead of an int because it was only returning 1 or 0 anyways. (diff) | |
download | cuberite-eefc6d37efd266edad5d1a2cbc2ea6e543e60cc2.tar cuberite-eefc6d37efd266edad5d1a2cbc2ea6e543e60cc2.tar.gz cuberite-eefc6d37efd266edad5d1a2cbc2ea6e543e60cc2.tar.bz2 cuberite-eefc6d37efd266edad5d1a2cbc2ea6e543e60cc2.tar.lz cuberite-eefc6d37efd266edad5d1a2cbc2ea6e543e60cc2.tar.xz cuberite-eefc6d37efd266edad5d1a2cbc2ea6e543e60cc2.tar.zst cuberite-eefc6d37efd266edad5d1a2cbc2ea6e543e60cc2.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Tracer.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/Tracer.h b/source/Tracer.h index 85cb406c8..dc393ae5e 100644 --- a/source/Tracer.h +++ b/source/Tracer.h @@ -14,7 +14,12 @@ public: // tolua_export ~cTracer(); // tolua_export /// Determines if a collision occures along a line. Returns true if a collision occurs. - bool Trace( const Vector3f & a_Start, const Vector3f & a_Direction, int a_Distance); // tolua_export + bool Trace( const Vector3f & a_Start, const Vector3f & a_Direction, int a_Distance) // tolua_export + { + return Trace(a_Start, a_Direction, a_Distance, false); + } + + bool Trace( const Vector3f & a_Start, const Vector3f & a_Direction, int a_Distance, bool a_LineOfSight); // tolua_export /// Contains the position of the block that caused the collision Vector3f BlockHitPosition; // tolua_export |