1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-10-16 08:46:36 +00:00
openmw/apps/openmw/mwmechanics/greetingstate.hpp

14 lines
210 B
C++

#ifndef OPENMW_MWMECHANICS_GREETINGSTATE_H
#define OPENMW_MWMECHANICS_GREETINGSTATE_H
namespace MWMechanics
{
enum class GreetingState
{
None,
InProgress,
Done
};
}
#endif