mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-29 09:32:45 +00:00
22 lines
502 B
C++
22 lines
502 B
C++
#ifndef OPENMW_MWWORLD_MAGICEFFECTS_H
|
|
#define OPENMW_MWWORLD_MAGICEFFECTS_H
|
|
|
|
namespace ESM
|
|
{
|
|
struct CreatureStats;
|
|
struct InventoryState;
|
|
struct NpcStats;
|
|
}
|
|
|
|
namespace MWWorld
|
|
{
|
|
void convertMagicEffects(
|
|
ESM::CreatureStats& creatureStats, ESM::InventoryState& inventory, ESM::NpcStats* npcStats = nullptr);
|
|
|
|
void convertStats(ESM::CreatureStats& creatureStats);
|
|
|
|
void convertEnchantmentSlots(ESM::CreatureStats& creatureStats, ESM::InventoryState& inventory);
|
|
}
|
|
|
|
#endif
|