src/Error.cc
author Tero Marttila <terom@fixme.fi>
Tue, 27 Jan 2009 00:02:34 +0200
changeset 434 a8ba81432ddd
parent 227 39cd6861e43e
permissions -rw-r--r--
move write_object to NetworkMessage, fix player sync, and implement projectile sync

#include "Error.hh"

std::ostream& operator<< (std::ostream &s, Error &e) {
    return s << e.what();
}