コード例 #1
0
ファイル: TagRect.cs プロジェクト: yeethawe/Rebirth95.Server
 /// <summary>
 /// Determines if the position is within the bounds of this object
 /// </summary>
 /// <param name="pos"></param>
 /// <returns></returns>
 public bool PointInRect(TagPoint pt) => PointInRect(pt.X, pt.Y);
コード例 #2
0
ファイル: TagRect.cs プロジェクト: yeethawe/Rebirth95.Server
 public void OffsetRect(TagPoint pt, bool bPositive = true) => OffsetRect(pt.X, pt.Y, bPositive);