src/proto2/Dimension.cc
author terom
Sat, 08 Nov 2008 21:25:56 +0000
changeset 23 8d802b573cf0
child 24 b81cb670e6b2
permissions -rw-r--r--
fixed more network code, there's actually a high probability of it working now
#include "Dimension.hh"

std::ostream& operator<< (std::ostream &s, const Coordinate &c) {
	s << "(" << c.x << ", " << c.y << ")";

	return s;
}

std::ostream& operator<< (std::ostream &s, const PositionDelta &c) {
	s << "(" << c.dx << ", " << c.dy << ")";

	return s;
}