mirror of
https://gitlab.com/MaddoScientisto/cirnofarm.git
synced 2026-06-08 23:25:54 +00:00
15 lines
235 B
Lua
15 lines
235 B
Lua
|
|
--[[pod_format="raw",created="2024-04-14 13:41:07",modified="2024-04-14 13:49:10",revision=1]]
|
||
|
|
include("cirno.lua")
|
||
|
|
|
||
|
|
function _init()
|
||
|
|
cirno_init()
|
||
|
|
end
|
||
|
|
|
||
|
|
function _update()
|
||
|
|
cirno_update()
|
||
|
|
end
|
||
|
|
|
||
|
|
function _draw()
|
||
|
|
cls(0)
|
||
|
|
cirno_draw()
|
||
|
|
end
|