Ejemplo n.º 1
0
 public float Distance(MoonVector2Int other)
 {
     return(Vector2Int.Distance(m_AssociatedVector, other.m_AssociatedVector));
 }
Ejemplo n.º 2
0
 public MoonVector2Int Scale(MoonVector2Int other)
 {
     return(new MoonVector2Int(Vector2Int.Scale(this.m_AssociatedVector, other.m_AssociatedVector)));
 }
Ejemplo n.º 3
0
 public bool Equals(MoonVector2Int other)
 {
     return(m_AssociatedVector == other.m_AssociatedVector);
 }