package com.croftsoft.apps.dodger;
/*********************************************************************
* Game data such as high score.
*
* @version
* 2002-12-22
* @since
* 2002-12-22
* @author
* David Wallace Croft
*********************************************************************/
public class DodgerData
implements java.io.Serializable
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
{
private static final long serialVersionUID = 1L;
public long highScore;
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
public DodgerData ( long highScore )
//////////////////////////////////////////////////////////////////////
{
this.highScore = highScore;
}
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
}