Record.java
上传用户:jennyfly
上传日期:2021-08-10
资源大小:735k
文件大小:1k
源码类别:

游戏

开发平台:

Java

  1. package model;
  2. /**
  3.  * 本类用于存储记录,并提供一个方法接口供判断是否打破记录
  4.  * 
  5.  * @author 何晓飞
  6.  * 
  7.  */
  8. public class Record {
  9. private int seconds;
  10. private int level;
  11. /**
  12.  * 
  13.  * @param level
  14.  *            关数
  15.  * @param seconds
  16.  *            闯关时间
  17.  */
  18. public Record(int level, int seconds) {
  19. this.seconds = seconds;
  20. this.level = level;
  21. }
  22. /**
  23.  * 
  24.  * @return 记录所在关数
  25.  */
  26. public int getLevel() {
  27. return this.level;
  28. }
  29. /**
  30.  * 
  31.  * @return 闯关时间
  32.  */
  33. public int getSeconds() {
  34. return this.seconds;
  35. }
  36. }