mirror of
https://github.com/cyberarm/w3d_hub_linux_launcher.git
synced 2026-05-06 17:38:18 +00:00
16 lines
491 B
Ruby
16 lines
491 B
Ruby
module W3DHubLauncher
|
|
module GuiExt
|
|
BLACK_IMAGE = Gosu.render(64, 64, retro: true) { Gosu.draw_rect(0, 0, 32, 32, Gosu::Color::BLACK) }
|
|
WHITE_IMAGE = Gosu.render(64, 64, retro: true) { Gosu.draw_rect(0, 0, 32, 32, Gosu::Color::WHITE) }
|
|
|
|
def safe_get_image(path, retro: false)
|
|
return get_image(path, retro: retro) if File.exist?(path)
|
|
|
|
path = "./media/default.png"
|
|
return get_image(path, retro: retro) if File.exist?(path)
|
|
|
|
WHITE_IMAGE
|
|
end
|
|
end
|
|
end
|