demboyz/demboyz/netmessages/svc_gameevent.h

17 lines
232 B
C++

#pragma once
#include "nethandlers.h"
#include <memory>
namespace NetMsg
{
struct SVC_GameEvent
{
std::unique_ptr<uint8_t[]> data;
uint16_t dataLengthInBits;
};
}
DECLARE_NET_HANDLERS(SVC_GameEvent);