demboyz/demboyz/netmessages/svc_prefetch.h
2015-05-14 21:36:57 -04:00

20 lines
250 B
C++

#pragma once
#include "nethandlers.h"
namespace NetMsg
{
struct SVC_Prefetch
{
enum Types
{
SOUND = 0
};
uint16_t type;
uint16_t soundIndex;
};
}
DECLARE_NET_HANDLERS(SVC_Prefetch);