001 package com.croftsoft.apps.dodger; 002 003 /********************************************************************* 004 * Game data such as high score. 005 * 006 * @version 007 * 2002-12-22 008 * @since 009 * 2002-12-22 010 * @author 011 * <a href="https://www.croftsoft.com/">David Wallace Croft</a> 012 *********************************************************************/ 013 014 public class DodgerData 015 implements java.io.Serializable 016 ////////////////////////////////////////////////////////////////////// 017 ////////////////////////////////////////////////////////////////////// 018 { 019 020 private static final long serialVersionUID = 1L; 021 022 public long highScore; 023 024 ////////////////////////////////////////////////////////////////////// 025 ////////////////////////////////////////////////////////////////////// 026 027 public DodgerData ( long highScore ) 028 ////////////////////////////////////////////////////////////////////// 029 { 030 this.highScore = highScore; 031 } 032 033 ////////////////////////////////////////////////////////////////////// 034 ////////////////////////////////////////////////////////////////////// 035 }