Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
obgnail committed Nov 29, 2022
1 parent 116ee5b commit 647cb6f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ const (
failedTitle = "游戏失败"
// 当游戏成功时弹窗标题
successTitle = "游戏胜利"
// 鼠标点击时间间隔(过快可能会导致异常,比如两次单击变成双击)
// 鼠标点击时间间隔,过快可能会导致异常:
// 若<200ms,务必将showFlag设置为false.因为此时单元格可能会先单击后双击,系统对此会判定为先双击后单击
// 不可<100ms.因为系统顶不住,鼠标操作会错乱
clickInterval = time.Millisecond * 100
// 是否插棋
showFlag = false
Expand Down

0 comments on commit 647cb6f

Please sign in to comment.