mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
16 lines
334 B
C++
16 lines
334 B
C++
#ifndef GAME_MWMECHANICS_DRAWSTATE_H
|
|
#define GAME_MWMECHANICS_DRAWSTATE_H
|
|
|
|
namespace MWMechanics
|
|
{
|
|
/// \note The _ suffix is required to avoid a collision with a Windoze macro. Die, Microsoft! Die!
|
|
enum DrawState_
|
|
{
|
|
DrawState_Weapon = 0,
|
|
DrawState_Spell = 1,
|
|
DrawState_Nothing = 2
|
|
};
|
|
}
|
|
|
|
#endif
|