fixed broken UiOverlay

This commit is contained in:
Chris Forbes
2009-10-11 10:54:09 +13:00
parent 0eee005d52
commit cdf56c278f
3 changed files with 7 additions and 6 deletions

View File

@@ -82,5 +82,6 @@ namespace OpenRa
public float2 Round() { return new float2((float)Math.Round(X), (float)Math.Round(Y)); }
public override string ToString() { return string.Format("({0},{1})", X, Y); }
public int2 ToInt2() { return new int2((int)X, (int)Y); }
}
}