// Copyright (c) 2014 Robert Rouhani and other contributors (see CONTRIBUTORS file). // Licensed under the MIT License - https://raw.github.com/Robmaister/SharpNav/master/LICENSE using System; namespace SharpNav.Crowds { /// /// Describes the current state of a crowd agent /// [Flags] public enum AgentState { /// /// Not in any state /// Invalid, /// /// Walking on the navigation mesh /// Walking, /// /// Handling an offmesh connection /// Offmesh } }