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

14 lines
200 B
C++
Raw Normal View History

#ifndef GAME_MWMECHANICS_DRAWSTATE_H
#define GAME_MWMECHANICS_DRAWSTATE_H
2012-04-13 13:09:38 +00:00
#undef DrawState
enum DrawState
{
2012-04-08 11:28:34 +00:00
DrawState_Weapon = 0,
DrawState_Spell = 1,
DrawState_Nothing = 2,
};
#endif