mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
14 lines
200 B
C++
14 lines
200 B
C++
#ifndef GAME_MWMECHANICS_DRAWSTATE_H
|
|
#define GAME_MWMECHANICS_DRAWSTATE_H
|
|
|
|
#undef DrawState
|
|
|
|
enum DrawState
|
|
{
|
|
DrawState_Weapon = 0,
|
|
DrawState_Spell = 1,
|
|
DrawState_Nothing = 2,
|
|
};
|
|
|
|
#endif
|