Sha256: 2a65459f814a0448d726a784ef9b16a8885f8bef1d43dcf4ad1cfebb184811f1
Contents?: true
Size: 516 Bytes
Versions: 18
Compression:
Stored size: 516 Bytes
Contents
module Gosuplus module GUI module Form class Base def initialize(position, image, input_handler, key_id, font, text = nil) @icon = Icon.new(image, position) @input_handler, @key_id, @font = input_handler, key_id, font @visible_text = text ? text : String @actual_text = String end def draw end def update(x, y) end def activated?(x, y) end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems