mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
16 lines
299 B
C++
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
|