mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-22 23:06:18 +00:00
8 lines
108 B
Ruby
8 lines
108 B
Ruby
c = 0
|
|
while c < 1000
|
|
c = c + 1
|
|
puts c
|
|
Graphics.frame_reset
|
|
Graphics.update
|
|
Font.default_size = c
|
|
end
|