Portable Half-Life SDK. GoldSource and Xash3D. Crossplatform.
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.

25 lines
1020 B

//========= Copyright (c) 1996-2002, Valve LLC, All rights reserved. ============
9 years ago
//
// Purpose: New version of the slider bar
//
// $NoKeywords: $
//=============================================================================
//=========================================================
// squad.h
//=========================================================
#pragma once
3 years ago
#if !defined(SQUAD_H)
#define SQUAD_H
9 years ago
// these are special group roles that are assigned to members when the group is formed.
// the reason these are explicitly assigned and tasks like throwing grenades to flush out
// enemies is that it's bad to have two members trying to flank left at the same time, but
// ok to have two throwing grenades at the same time. When a squad member cannot attack the
// enemy, it will choose to execute its special role.
9 years ago
#define bits_SQUAD_FLANK_LEFT ( 1 << 0 )
#define bits_SQUAD_FLANK_RIGHT ( 1 << 1 )
#define bits_SQUAD_ADVANCE ( 1 << 2 )
#define bits_SQUAD_FLUSH_ATTACK ( 1 << 3 )
#endif // SQUAD_H