You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/apps/openmw/mwmechanics/levelledlist.hpp

21 lines
386 B
C++

#ifndef OPENMW_MECHANICS_LEVELLEDLIST_H
#define OPENMW_MECHANICS_LEVELLEDLIST_H
#include <components/misc/rng.hpp>
namespace ESM
{
struct LevelledListBase;
class RefId;
}
namespace MWMechanics
{
/// @return ID of resulting item, or empty if none
ESM::RefId getLevelledItem(const ESM::LevelledListBase* levItem, bool creature, Misc::Rng::Generator& prng);
}
#endif