rename project to impostor

This commit is contained in:
2026-01-12 21:19:45 +01:00
parent 4907c9cadf
commit b3158bdc37
10 changed files with 47 additions and 13 deletions

View File

@@ -1,6 +1,13 @@
function SplashWindow.draw()
Print.text("Mr. Anderson's", 78, 60, Config.colors.green)
Print.text("Addventure", 90, 70, Config.colors.green)
for y, row in ipairs(MapBedroom) do
for x = 1, #row, 2 do
local tile_id_hex = string.sub(row, x, x + 1)
local tile_id = tonumber(tile_id_hex, 16)
local screen_x = (x - 1) / 2 * 8
local screen_y = (y - 1) * 8
spr(tile_id, screen_x, screen_y, -1, 1, 0, 0, 1, 1)
end
end
end
function SplashWindow.update()