]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/resources.qh
Purge client/defs.qh
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / resources.qh
index 939d12c172f267f94bd2c027ead67f74776d959e..4b0eaa8e75efaa3250a235d6229178682d7ee15a 100644 (file)
 /// \return Current amount of resource the given entity has.
 float GetResource(entity e, int res_type);
 
+/// \brief Sets the resource amount of an entity without calling any hooks.
+/// \param[in,out] e Entity to adjust.
+/// \param[in] res_type Type of the resource (a RES_* constant).
+/// \param[in] amount Amount of resource to set.
+/// \return Boolean for whether the ammo amount was changed
+bool SetResourceExplicit(entity e, int res_type, float amount);
+
 /// \brief Sets the current amount of resource the given entity will have.
 /// \param[in,out] e Entity to adjust.
 /// \param[in] res_type Type of the resource (a RES_* constant).