| 123456789101112131415161718192021222324252627282930 |
- // WARNING - AUTOGENERATED - DO NOT EDIT
- //
- // Generated using `sharpie urho`
- //
- // CrowdAgentState.cs
- //
- // Copyright 2015 Xamarin Inc. All rights reserved.
- using System;
- using System.Runtime.InteropServices;
- using System.Collections.Generic;
- using Urho.Urho2D;
- using Urho.Gui;
- using Urho.Resources;
- using Urho.IO;
- using Urho.Navigation;
- using Urho.Network;
- namespace Urho.Navigation
- {
- /// <summary>
- /// The agent is not in a valid state.
- /// </summary>
- public enum CrowdAgentState
- {
- StateInvalid = 0,
- StateWalking,
- StateOffmesh
- }
- }
|