src/Network/Target.cc
author nireco
Thu, 29 Jan 2009 22:23:28 +0200
changeset 442 edde3a342102
parent 432 82b0f4e55a13
permissions -rw-r--r--
couple of images about new worm

#include "Target.hh"

#include <cassert>

void NetworkTarget::send_raw (const NetworkPacketBuffer &pkt, bool reliable) {
    // just send
    send_pkt(pkt, reliable);
}

void NetworkTarget::send (const NetworkChannelPacket &pkt, bool reliable) {
    // just send
    send_pkt(pkt, reliable);
}