/* AMX Mod X
*   [HL] Set Animation API by KORD_12.7
*
* http://aghl.ru/forum/ - Russian Half-Life and Adrenaline Gamer Community
*
* This file is provided as is (no warranties)
*/

#if defined _hl_set_anim_included
	#endinput
#endif

#define _hl_set_anim_included


enum PLAYER_ANIM
{
	PLAYER_IDLE,
	PLAYER_WALK,
	PLAYER_JUMP,
	PLAYER_SUPERJUMP,
	PLAYER_DIE,
	PLAYER_ATTACK1
};

/* Set the activity based on an event or current state */
native hl_user_set_animation(const iPlayer, const iPlayerAnim);