Add importing and exporting replays

This commit is contained in:
Squishy (C6H12O6+NaCl+H2O)
2024-05-29 00:09:48 +07:00
parent d7726c1854
commit 9679378b1b
7 changed files with 99 additions and 14 deletions

View File

@@ -2,6 +2,10 @@
FONT_tromi = love.graphics.newFont('res/fonts/monofonto rg.otf', 28)
FONT_big = love.graphics.newFont('res/fonts/monofonto rg.otf', 56)
FONT_tromi:setFallbacks(love.graphics.newFont('res/fonts/icon.otf', 28))
FONT_big :setFallbacks(love.graphics.newFont('res/fonts/icon.otf', 56))
CHAR = require("char")
local font_height = FONT_tromi:getHeight() * 0.5
local font_big_height = FONT_big:getHeight() * 0.5