pull/80/merge
Kirby703 2023-10-19 12:44:26 -04:00 committed by GitHub
commit 1ba22af7f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -106,6 +106,10 @@ function Race40Game:drawGrid(ruleset)
if self.piece ~= nil then
self:drawGhostPiece(ruleset)
end
if self.lines >= self.line_goal - 20 and self.lines < self.line_goal then
local line_height = (self.lines - self.line_goal + 20) * 16 + 80
love.graphics.setColor(1, 0, 0, 1)
love.graphics.line(64, line_height, 224, line_height)
end
function Race40Game:getHighscoreData()