mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:19:55 +00:00
15 lines
334 B
C++
15 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
|