UnityEngine.SendMouseEvents.HitInfo.Compare C# (CSharp) Method

Compare() public static method

public static Compare ( SendMouseEvents lhs, SendMouseEvents rhs ) : bool
lhs SendMouseEvents
rhs SendMouseEvents
return bool
            public static bool Compare(SendMouseEvents.HitInfo lhs, SendMouseEvents.HitInfo rhs)
            {
                return ((lhs.target == rhs.target) && (lhs.camera == rhs.camera));
            }
        }
SendMouseEvents.HitInfo