forked from MeloNX/MeloNX
29 lines
937 B
C#
29 lines
937 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using System;
|
|
|
|
namespace LibRyujinx.Jni.References
|
|
{
|
|
public readonly struct JClassLocalRef : IEquatable<JClassLocalRef>
|
|
{
|
|
#pragma warning disable 0649
|
|
public readonly JObjectLocalRef _value;
|
|
#pragma warning restore 0649
|
|
|
|
#region Public Methods
|
|
public Boolean Equals(JClassLocalRef other)
|
|
=> this._value.Equals(other._value);
|
|
#endregion
|
|
|
|
#region Override Methods
|
|
public override Boolean Equals([NotNullWhen(true)] Object obj)
|
|
=> obj is JClassLocalRef other && this.Equals(other);
|
|
public override Int32 GetHashCode() => this._value.GetHashCode();
|
|
#endregion
|
|
|
|
#region Operators
|
|
public static Boolean operator ==(JClassLocalRef a, JClassLocalRef b) => a.Equals(b);
|
|
public static Boolean operator !=(JClassLocalRef a, JClassLocalRef b) => !a.Equals(b);
|
|
#endregion
|
|
}
|
|
}
|