SunsetHigh.Character.bothFacing C# (CSharp) Метод

bothFacing() публичный Метод

Checks if two Characters are facing each other
public bothFacing ( Character other ) : bool
other Character The other Character
Результат bool
        public bool bothFacing(Character other)
        {
            return this.facing(other) && other.facing(this);
        }