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

26 lines
724 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**************************************
文件名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`;
}