// Mirek's Java Cellebration
// http://www.mirwoj.opus.chelm.pl
//
// The cell class

public class CACell
{
  int x;
  int y;
  short state;

  public CACell()
  {
    x = 0;
    y = 0;
    state = 0;
  }
  public CACell(int ix, int iy, short stt)
  {
    x = ix;
    y = iy;
    state = stt;
  }
}
