Class: Fenetre

Inherits:
Gtk::Window
  • Object
show all
Defined in:
lib/Hashiparmentier/UI/Fenetre.rb

Overview

PAS UTILISE DANS LE VERSION FINALE

Auteur

Brabant Mano

Version

0.1

Date

09/04/2020

Une fenetre ou va apparaitre le jeu

Instance Method Summary collapse

Constructor Details

#initializeFenetre

Returns a new instance of Fenetre.



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/Hashiparmentier/UI/Fenetre.rb', line 14

def initialize()

  super()
  set_title('Hashiparmentier')

  signal_connect "destroy" do
    Gtk.main_quit
  end

  set_window_position Gtk::WindowPosition::CENTER

  add(RacineUI.new())

  maximize
  show_all

end