]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/item_key.qh
Properly support team field on trigger_multiple
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / item_key.qh
index 24ef1e935c8f51e09f40079b01fb687d4c3f8c9c..50be5f8dba7ef998c238dd68fbb531f6951da142 100644 (file)
@@ -1,3 +1,5 @@
+#pragma once
+
 /**
  * Returns the bit ID of a key
  */
 /**
  * list of key names.
  */
+#ifdef SVQC
 string item_keys_names[ITEM_KEY_MAX];
 
 /**
  * Use keys from p on l.
- * Returns TRUE if any new keys were given, FALSE otherwise.
+ * Returns true if any new keys were given, false otherwise.
  */
 float item_keys_usekey(entity l, entity p);
 
@@ -20,4 +23,4 @@ float item_keys_usekey(entity l, entity p);
  * Returns a string with a comma separated list of key names, as specified in keylist.
  */
 string item_keys_keylist(float keylist);
-
+#endif