This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/common/pm_movevars.h

21 lines
703 B
C

//=======================================================================
// Copyright XashXT Group 2008 ©
// cvardef.h - pointer to console variable
//=======================================================================
#ifndef PM_MOVEVARS_H
#define PM_MOVEVARS_H
struct movevars_s
{
float gravity; // gravity for map
float maxvelocity; // maximum server velocity.
float rollangle; // client rollangle
float rollspeed; // cleint rollspeed
float maxspeed; // max allowed speed
float stepheight; // sv_stepheight
float accelerate; // acceleration factor
float airaccelerate; // same for when in open air
float friction; // sv_friction
};
#endif//PM_MOVEVARS_H