(short opcode, int size = DefaultBufferSize)
| 34 | } |
| 35 | |
| 36 | public PacketWriter(short opcode, int size = DefaultBufferSize) |
| 37 | { |
| 38 | m_stream = new MemoryStream(size); |
| 39 | m_disposed = false; |
| 40 | //WriteShort(); //place folder for len |
| 41 | WriteShort(opcode); |
| 42 | } |
| 43 | |
| 44 | public PacketWriter() |
| 45 | { |
nothing calls this directly
no outgoing calls
no test coverage detected