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

15 lines
222 B
C++

#ifndef OPENMW_MWMECHANICS_GREETINGSTATE_H
#define OPENMW_MWMECHANICS_GREETINGSTATE_H
namespace MWMechanics
{
enum GreetingState
{
Greet_None,
Greet_InProgress,
Greet_Done
};
}
#endif