Remove WVec.ToCVec.

This commit is contained in:
Paul Chote
2013-09-17 22:43:11 +12:00
parent 7b52fa52b6
commit 4bc09692e0
2 changed files with 2 additions and 3 deletions

View File

@@ -114,6 +114,5 @@ namespace OpenRA
public static class WorldCoordinateExtensions
{
public static CPos ToCPos(this WPos a) { return new CPos(a.X / 1024, a.Y / 1024); }
public static CVec ToCVec(this WVec a) { return new CVec(a.X / 1024, a.Y / 1024); }
}
}