1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-30 12:32:36 +00:00
OpenMW/apps/openmw/mwmechanics/greetingstate.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
222 B
C++
Raw Normal View History

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