Exemple #1
0
        public override string ToString()
        {
            string temp = AIHintType.ToString();

            if (Coordinate != null)
            {
                temp += " " + Coordinate.ToString();
            }
            temp += " >>" + Direction;
            return(temp);
        }
Exemple #2
0
        public override string ToString()
        {
            string temp = AIHintType.ToString();

            if (Position != null)
            {
                temp += " " + Position.ToString();
            }
            temp += " [" + Direction + "]";
            return(temp);
        }