15 lines
161 B
C++
15 lines
161 B
C++
|
|
#pragma once
|
|
|
|
#include "nethandlers.h"
|
|
|
|
namespace NetMsg
|
|
{
|
|
struct SVC_SetView
|
|
{
|
|
uint16_t entIndex;
|
|
};
|
|
}
|
|
|
|
DECLARE_NET_HANDLERS(SVC_SetView);
|