#pragma once /// \file /// \brief Header file that describes the random items mutator. /// \author Lyberta /// \copyright GNU GPLv2 or any later version. bool autocvar_g_random_items; ///< Whether to enable random items. /// \brief Returns a random classname of the item. /// \param[in] prefix Prefix of the cvars that hold probabilities. /// \return Random classname of the item. /// \note This function will automatically detect gamemode and use cvars from /// that gamemode. string RandomItems_GetRandomItemClassName(string prefix); /// \brief Returns a random classname of the vanilla item. /// \param[in] prefix Prefix of the cvars that hold probabilities. /// \return Random classname of the vanilla item. /// \note This includes mutator items that don't change gameplay a lot such as /// jetpack and new toys. string RandomItems_GetRandomVanillaItemClassName(string prefix); /// \brief Returns a random classname of the instagib item. /// \param[in] prefix Prefix of the cvars that hold probabilities. /// \return Random classname of the instagib item. string RandomItems_GetRandomInstagibItemClassName(string prefix); /// \brief Returns a random classname of the overkill item. /// \param[in] prefix Prefix of the cvars that hold probabilities. /// \return Random classname of the overkill item. string RandomItems_GetRandomOverkillItemClassName(string prefix);