1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/apps/openmw/mwmechanics/drawstate.hpp

16 lines
334 B
C++
Raw Normal View History

#ifndef GAME_MWMECHANICS_DRAWSTATE_H
#define GAME_MWMECHANICS_DRAWSTATE_H
namespace MWMechanics
{
2012-07-07 18:53:19 +00:00
/// \note The _ suffix is required to avoid a collision with a Windoze macro. Die, Microsoft! Die!
enum DrawState_
{
2014-05-12 19:04:02 +00:00
DrawState_Nothing = 0,
DrawState_Weapon = 1,
DrawState_Spell = 2
};
}
#endif