SunsetHigh.Character.bothFacing C# (CSharp) Method

bothFacing() public method

Checks if two Characters are facing each other
public bothFacing ( Character other ) : bool
other Character The other Character
return bool
        public bool bothFacing(Character other)
        {
            return this.facing(other) && other.facing(this);
        }