module TAC class Dialog class ConfirmDialog < Dialog def build background Gosu::Color::GRAY label @options[:message], text_size: 18 flow width: 1.0 do button "Cancel", width: 0.475, text_size: 18 do close end button "Okay", width: 0.475, text_size: 18 do @options[:callback_method].call close end end end end end end