import java.awt.*;
import java.applet.*;

public class SnakeBit 
{
	public SnakeBit Neste;
	public int x,y; 

	public SnakeBit(int x, int y)
	{
		this.x = x; this.y = y;
		this.Neste = null;
	}
	
	public void setx(int x)
	{
		this.x = x;
	}
	
	public void sety(int y)
	{
		this.y = y;
	}

	public void setNeste(SnakeBit Neste)
	{
		this.Neste = Neste;
	}

}