blob: 53e43a3e97f15b0a6a116d64c5e7bcb48e693224 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: The default shared conditions
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#ifndef SQUADSLOT_H
#define SQUADSLOT_H
#define MAX_SQUADSLOTS 32
//=========================================================
// These are the default shared squad slots
//
// NOTE: If you add a new squad slot here, make sure you
// update GetSquadSlotDebugName()
//=========================================================
enum SQUAD_SLOT_t {
// Currently there are no shared squad slots
SQUAD_SLOT_NONE = -1,
SQUAD_SLOT_ATTACK1 = 0, // reserve 2 attack slots for most squads
SQUAD_SLOT_ATTACK2,
SQUAD_SLOT_INVESTIGATE_SOUND,
SQUAD_SLOT_EXCLUSIVE_HANDSIGN, // only one person in a squad should do this!
SQUAD_SLOT_EXCLUSIVE_RELOAD,
SQUAD_SLOT_PICKUP_WEAPON1,
SQUAD_SLOT_PICKUP_WEAPON2,
SQUAD_SLOT_SPECIAL_ATTACK, // Combine Elite using the combine ball attack, for instance.
// ======================================
// IMPORTANT: This must be the last enum
// ======================================
LAST_SHARED_SQUADSLOT,
};
#endif //SQUADSLOT_H
|