You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
806 B
41 lines
806 B
1 year ago
|
using System;
|
||
|
|
||
|
namespace UniRx
|
||
|
{
|
||
|
[Serializable]
|
||
|
public struct Unit : IEquatable<Unit>
|
||
|
{
|
||
|
static readonly Unit @default = new Unit();
|
||
|
|
||
|
public static Unit Default { get { return @default; } }
|
||
|
|
||
|
public static bool operator ==(Unit first, Unit second)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public static bool operator !=(Unit first, Unit second)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public bool Equals(Unit other)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
public override bool Equals(object obj)
|
||
|
{
|
||
|
return obj is Unit;
|
||
|
}
|
||
|
|
||
|
public override int GetHashCode()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public override string ToString()
|
||
|
{
|
||
|
return "()";
|
||
|
}
|
||
|
}
|
||
|
}
|