Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
518 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef MOVETYPE_PUSH_H
#define MOVETYPE_PUSH_H
#ifdef _WIN32
#pragma once
#endif
const int MAX_PUSHED_ENTITIES = 32;
struct physicspushlist_t
{
float localMoveTime;
Vector localOrigin;
QAngle localAngles;
int pushedCount;
EHANDLE pushedEnts[MAX_PUSHED_ENTITIES];
Vector pushVec[MAX_PUSHED_ENTITIES];
};
#endif // MOVETYPE_PUSH_H