mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-29 14:36:43 +00:00
16 lines
249 B
C++
16 lines
249 B
C++
#ifndef GAME_MWMECHANICS_DRAWSTATE_H
|
|
#define GAME_MWMECHANICS_DRAWSTATE_H
|
|
|
|
#undef DrawState
|
|
|
|
namespace MWMechanics
|
|
{
|
|
enum DrawState
|
|
{
|
|
DrawState_Weapon = 0,
|
|
DrawState_Spell = 1,
|
|
DrawState_Nothing = 2,
|
|
};
|
|
}
|
|
|
|
#endif
|