mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +00:00
15 lines
233 B
C++
15 lines
233 B
C++
|
#ifndef GAME_MWWORLD_SPELLCASTSTATE_H
|
||
|
#define GAME_MWWORLD_SPELLCASTSTATE_H
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
enum class SpellCastState
|
||
|
{
|
||
|
Success = 0,
|
||
|
InsufficientMagicka = 1,
|
||
|
PowerAlreadyUsed = 2
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|