import java.awt.*;

public class SquishyPoint
{
   boolean fixed;
   float x, y, vx, vy;
   SquishyPoint left, right, up, down, next;
   Color color;
}

