upload "kind" alien swarm

This commit is contained in:
nillerusr
2023-10-03 17:23:56 +03:00
parent b7bd94c52e
commit 7d3c0d8b5a
4229 changed files with 462900 additions and 495155 deletions
+39
View File
@@ -0,0 +1,39 @@
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef ASW_PLAYERLOCALDATA_H
#define ASW_PLAYERLOCALDATA_H
#ifdef _WIN32
#pragma once
#endif
#include "networkvar.h"
#include "hl_movedata.h"
//-----------------------------------------------------------------------------
// Purpose: Player specific data for Infested ( sent only to local player, too )
//-----------------------------------------------------------------------------
class CASWPlayerLocalData
{
public:
// Save/restore
DECLARE_SIMPLE_DATADESC();
DECLARE_CLASS_NOBASE( CASWPlayerLocalData );
DECLARE_EMBEDDED_NETWORKVAR();
CASWPlayerLocalData();
CNetworkVar( EHANDLE, m_hAutoAimTarget );
CNetworkVar( Vector, m_vecAutoAimPoint );
CNetworkVar( bool, m_bAutoAimTarget );
};
EXTERN_SEND_TABLE(DT_ASWLocal);
#endif // ASW_PLAYERLOCALDATA_H