X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fresources.qh;h=81f4eb54a4a02979f071bbe5e3170f7f3c375f0c;hb=329838c764b7b703e04d40ce4e5c3cbb0acd2b16;hp=8e33c649b3bf5e68e09b5050252f53f48002e8b7;hpb=7e5268799e95d0dd6f2b77ed4e097b0adc755f2b;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/resources.qh b/qcsrc/common/resources.qh index 8e33c649b..81f4eb54a 100644 --- a/qcsrc/common/resources.qh +++ b/qcsrc/common/resources.qh @@ -6,19 +6,19 @@ /// \copyright GNU GPLv2 or any later version. /// \brief Unconditional maximum amount of resources the entity can have. -const int RESOURCE_AMOUNT_HARD_LIMIT = 999; -const int RESOURCE_LIMIT_NONE = -1; +const int RES_AMOUNT_HARD_LIMIT = 999; +const int RES_LIMIT_NONE = -1; /// \brief Describes the available resource types. enum { - RESOURCE_NONE, ///< Indicates the lack of resource. Use with caution. - RESOURCE_HEALTH, ///< Health. - RESOURCE_ARMOR, ///< Armor. - RESOURCE_SHELLS, ///< Shells (used by shotgun). - RESOURCE_BULLETS, ///< Bullets (used by machinegun, rifle, HMG) - RESOURCE_ROCKETS, ///< Rockets (used by mortar, hagar, devastator, etc). - RESOURCE_CELLS, ///< Cells (used by electro, crylink, vortex, etc) - RESOURCE_PLASMA, ///< Plasma (unused). - RESOURCE_FUEL ///< Fuel (used by jetpack). + RES_NONE, ///< Indicates the lack of resource. Use with caution. + RES_HEALTH, ///< Health. + RES_ARMOR, ///< Armor. + RES_SHELLS, ///< Shells (used by shotgun). + RES_BULLETS, ///< Bullets (used by machinegun, rifle, HMG) + RES_ROCKETS, ///< Rockets (used by mortar, hagar, devastator, etc). + RES_CELLS, ///< Cells (used by electro, crylink, vortex, etc) + RES_PLASMA, ///< Plasma (unused). + RES_FUEL ///< Fuel (used by jetpack). };