mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 12:48:20 +00:00
14 lines
241 B
C++
14 lines
241 B
C++
#ifndef PACKETUTILS_H
|
|
#define PACKETUTILS_H
|
|
|
|
#include <string>
|
|
#include <cstdint>
|
|
#include "RakNetTypes.h"
|
|
|
|
|
|
namespace PacketUtils {
|
|
void SavePacket(const std::string& filename, const char* data, size_t length);
|
|
};
|
|
|
|
#endif // PACKETUTILS_H
|