Remove obsolete PSubPos and PSubVec.

This commit is contained in:
Paul Chote
2013-07-22 20:36:50 +12:00
parent 4a425e0fa0
commit 3fd01cfac2
6 changed files with 0 additions and 446 deletions

View File

@@ -77,7 +77,6 @@ namespace OpenRA
public float2 ToFloat2() { return new float2(X, Y); }
public int2 ToInt2() { return new int2(X, Y); }
public CPos ToCPos() { return new CPos((int)(1f / Game.CellSize * X), (int)(1f / Game.CellSize * Y)); }
public PSubPos ToPSubPos() { return new PSubPos(X * PSubPos.PerPx, Y * PSubPos.PerPx); }
public PPos Clamp(Rectangle r)
{