| 49 | bstream->writeString(mString.getString()); |
| 50 | } |
| 51 | virtual void unpack(NetConnection* /*con*/, BitStream *bstream) |
| 52 | { |
| 53 | char buf[256]; |
| 54 | mIndex = bstream->readInt(ConnectionStringTable::EntryBitSize); |
| 55 | bstream->readString(buf); |
| 56 | mString = NetStringHandle(buf); |
| 57 | } |
| 58 | virtual void notifyDelivered(NetConnection *ps, bool madeit) |
| 59 | { |
| 60 | if(madeit) |
nothing calls this directly
no test coverage detected