mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
16 lines
207 B
C++
16 lines
207 B
C++
#ifndef GAME_MWMECHANICS_DRAWSTATE_H
|
|
#define GAME_MWMECHANICS_DRAWSTATE_H
|
|
|
|
namespace MWMechanics
|
|
{
|
|
|
|
enum class DrawState
|
|
{
|
|
Nothing = 0,
|
|
Weapon = 1,
|
|
Spell = 2
|
|
};
|
|
}
|
|
|
|
#endif
|