source-engine/game/shared/swarm/asw_movedata.h
2023-10-03 17:23:56 +03:00

27 lines
499 B
C++

//========= Copyright © 1996-2009, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef ASW_MOVEDATA_H
#define ASW_MOVEDATA_H
#ifdef _WIN32
#pragma once
#endif
#include "igamemovement.h"
// This class contains ASW-specific prediction data.
class CASW_MoveData : public CMoveData
{
public:
int m_iForcedAction;
Vector m_vecSkillDest;
};
#endif // ASW_MOVEDATA_H