A cart with multiple fun background
This is a quick example to include the snow background in your pico cart. All backgrounds follow this example
#include bg1.lua
function _init()
snowBg = initSnowBg()
end
function _update()
runSnowBg(snowBg)
end
function _draw()
cls()
drawSnowBg(snowBg)
end