Ultima Online Protocol :: Direction (C#)
      using System;
      
      namespace Mobiles
      {
          public enum Direction
          {
              Northeast,
              East,
              Southeast,
              South,
              Southwest,
              West,
              Northwest,
              North
          }
      }
    
The values in the enumeration run from 0 (Northeast) to 7 (North). When used with a packet (such as the Request Movement packet), the flag 0x80 will indicate that the character is running in the specified direction.