コード例 #1
0
ファイル: Extensions.cs プロジェクト: phutirapheeha/ELEN7045
 public static int GetBottomEndPosition(this MovableObject movableObject, int height)
 {
     return(movableObject.GetPosition().Y + height);
 }
コード例 #2
0
ファイル: Extensions.cs プロジェクト: phutirapheeha/ELEN7045
 public static int GetRightEndPosition(this MovableObject movableObject, int width)
 {
     return(movableObject.GetPosition().X + width);
 }