pico8-0hh1/states/rules.lua

12 lines
248 B
Lua

function stateRules()
return {
_update=function()
end,
_draw=function()
print("1) you can't have more than\n 2 tiles of the same color\n in a row.", 2,2, 7)
sspr(0,32, 12,12, 8,24)
spr(2, 23, 25)
sspr(12,32, 12,12, 34,24)
end,
}
end