mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-12 00:40:23 +00:00
18 lines
340 B
C++
18 lines
340 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);
|
||
|
}
|
||
|
|
||
|
#endif
|