1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/apps/openmw/mwmechanics/recharge.hpp
2022-09-22 21:35:26 +03:00

16 lines
299 B
C++

#ifndef MWMECHANICS_RECHARGE_H
#define MWMECHANICS_RECHARGE_H
#include "../mwworld/ptr.hpp"
namespace MWMechanics
{
bool rechargeItem(const MWWorld::Ptr& item, const float maxCharge, const float duration);
bool rechargeItem(const MWWorld::Ptr& item, const MWWorld::Ptr& gem);
}
#endif