mirror of
https://github.com/ENSL/NS.git
synced 2024-11-10 15:21:54 +00:00
5af879678c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@69 67975925-1194-0748-b3d5-c16f83f1a3a1
13 lines
No EOL
734 B
C
13 lines
No EOL
734 B
C
//=========================================================
|
|
// squad.h
|
|
//=========================================================
|
|
|
|
// 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.
|
|
#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 ) |