mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
33 lines
807 B
C#
33 lines
807 B
C#
namespace Botanist;
|
|
|
|
class BodyAddress
|
|
{
|
|
public ulong SystemAddress { get; set; }
|
|
public int BodyID { get; set; }
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
// We want value equality here.
|
|
|
|
//
|
|
// See the full list of guidelines at
|
|
// http://go.microsoft.com/fwlink/?LinkID=85237
|
|
// and also the guidance for operator== at
|
|
// http://go.microsoft.com/fwlink/?LinkId=85238
|
|
//
|
|
|
|
if (obj == null || GetType() != obj.GetType())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var other = (BodyAddress)obj;
|
|
return other.SystemAddress == SystemAddress
|
|
&& other.BodyID == BodyID;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return HashCode.Combine(SystemAddress, BodyID);
|
|
}
|
|
} |