/// <summary>
 /// Forcibly teleports the transform to the given coordinates.
 /// </summary>
 public static void Teleport(this ITransform us, int x, int y)
 {
     us.Teleport(x, y, us.Z);
 }
 /// <summary>
 /// Forcibly teleports the transform to the given coordinates.
 /// </summary>
 public static void Teleport(this ITransform us, IPosition pos)
 {
     us.Teleport(pos.X, pos.Y, pos.Z);
 }