using System; namespace Framework.Navigation.Platformer { /// How an agent moves from one place to another public enum Action { /// Walk to the target location Walk, /// Jump from the origin to the target location Jump } } // namespace Framework.Navigation.Platformer