Minesweeper-2.0-test/scripts/game/time.js

26 lines
724 B
JavaScript
Raw Normal View History

2023-01-27 11:45:10 +00:00
/**************************************
文件名time.js
功能该模块用于处理游戏时间相关内容
版本2.0(23.01.08)
**************************************/
/**************************************
对象名Time
参数h: 小时, min: 分钟, s:
**************************************/
function Time(h, min, s){
this.time = {
h: h,
min: min,
s: s
}
}
/**************************************
方式名getTime()
功能获得当前游戏时间
返回值当前游戏时间字符串
**************************************/
Time.prototype.getTime = function(){
return `${this.time.h}h${this.time.min}min${this.time.s}s`;
}