1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:19:56 +00:00

missing ; added

This commit is contained in:
Aleksandar Jovanov 2012-04-08 13:28:34 +02:00
parent c589cbd4ff
commit 23cc1d17ca

View file

@ -3,9 +3,9 @@
enum DrawState
{
DrawState_Weapon,
DrawState_Spell,
DrawState_Nothing
}
DrawState_Weapon = 0,
DrawState_Spell = 1,
DrawState_Nothing = 2,
};
#endif