collide: fix printing CollisionBox

This commit is contained in:
rdb 2019-03-17 18:56:39 +01:00
parent 768dce9244
commit e486bbcb3f

View File

@ -186,6 +186,7 @@ get_test_pcollector() {
*/ */
void CollisionBox:: void CollisionBox::
output(std::ostream &out) const { output(std::ostream &out) const {
out << "box, (" << get_min() << ") to (" << get_max() << ")";
} }
/** /**