X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fresources.qh;h=6ff3cea67917973eab045526b76d0c6d97b05890;hb=f41f81f37e3ecf5a2d14f7bc7ffd7bbf09fff32e;hp=3189fde95a29c61d2252d2df0847a89ff23cdde9;hpb=85c03a17f9f8004118717560a0b01b6614d3ef8d;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/resources.qh b/qcsrc/server/resources.qh index 3189fde95..6ff3cea67 100644 --- a/qcsrc/server/resources.qh +++ b/qcsrc/server/resources.qh @@ -1,26 +1,15 @@ +#pragma once + /// \file /// \brief Header file that describes the resource system. /// \author Lyberta /// \copyright GNU GPLv2 or any later version. -#pragma once +#include /// \brief Unconditional maximum amount of resources the entity can have. const int RESOURCE_AMOUNT_HARD_LIMIT = 999; -/// \brief Describes the available resource types. -enum -{ - RESOURCE_HEALTH = 1, ///< Health. - RESOURCE_ARMOR, ///< Armor. - RESOURCE_SHELLS, ///< Shells (used by shotgun). - RESOURCE_BULLETS, ///< Bullets (used by machinegun and rifle) - 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). -}; - // ============================ Public API ==================================== /// \brief Returns the maximum amount of the given resource.