Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
cli-old/lib/widgets/logo.rb
2017-07-24 11:54:00 +00:00

34 lines
818 B
Ruby

# frozen_string_literal: true
module Widgets
class Menu < Container
class Logo < Base
LOGO = [
' _____ ___ _ _ ___ _ _ ',
' |_ _/ _ \ \/ / _ \| \ | | ',
' | || | | \ / | | | \| | ',
' | || |_| / \ |_| | |\ | ',
' |_| \___/_/\_\___/|_| \_| ',
' ',
' Version 0.0.0 ',
' ',
].freeze
WIDTH = LOGO.first.length
HEIGHT = LOGO.length
def initialize(parent, x, y, _width, _height)
super parent, x, y, WIDTH, HEIGHT
end
def draw
Style.default.logo window do
LOGO.each_with_index do |s, index|
setpos 0, index
addstr s
end
end
end
end
end
end