コード例 #1
0
ファイル: Leaf.cs プロジェクト: HasanKurt/artificial-life
 public static int IsHigher(Leaf lhs, Leaf rhs)
 {
     return(lhs.m_coord.Y.CompareTo(rhs.m_coord.Y));
 }