1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 09:50:34 +00:00

print for horo_distance

This commit is contained in:
Zeno Rogue 2019-10-05 15:34:07 +02:00
parent 282ca884c4
commit 4e1abe964f

View File

@ -211,6 +211,7 @@ struct horo_distance {
horo_distance(hyperpoint h) { become(h); }
horo_distance(hyperpoint h1, const transmatrix& T);
bool operator < (const horo_distance z) const;
friend void print(hstream& hs, horo_distance x) { print(hs, "[", x.a, ":", x.b, "]"); }
};
#endif