]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/item_key.qh
Merge branch 'master' into terencehill/vehicles_fixes
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / item_key.qh
1 /**
2  * Returns the bit ID of a key
3  */
4 #define ITEM_KEY_BIT(n) ( bitshift(1, n) )
5
6 #define ITEM_KEY_MAX    24
7
8 /**
9  * list of key names.
10  */
11 string item_keys_names[ITEM_KEY_MAX];
12
13 /**
14  * Use keys from p on l.
15  * Returns TRUE if any new keys were given, FALSE otherwise.
16  */
17 float item_keys_usekey(entity l, entity p);
18
19 /**
20  * Returns a string with a comma separated list of key names, as specified in keylist.
21  */
22 string item_keys_keylist(float keylist);
23