Files
VoidNet/include/NetworkBuffer.hpp
xX-TheDoctor-Xx 9e5cd40847 Added DataAvailable method in TcpClient which will return the number of bytes available in the stream
Config functions are now inline
NetworkMessage and NetworkBuffer are being reworked
2016-07-23 13:15:59 +01:00

19 lines
232 B
C++

#ifndef NETWORK_BUFFER_HPP
#define NETWORK_BUFFER_HPP
#ifdef _MSC_VER
#pragma once
#endif
#include "Defs.hpp"
struct NetworkBuffer
{
NetworkBuffer();
~NetworkBuffer();
byte *header = nullptr;
byte *body = nullptr;
};
#endif