Class: PrincipaleControleur
- Inherits:
-
Controller
- Object
- Controller
- PrincipaleControleur
- Defined in:
- app/controller/PrincipaleControleur.rb
Overview
Classe permettant de créer un contrôleur pour la vue FenetrePrincipale
Instance Method Summary collapse
-
#initialize ⇒ PrincipaleControleur
constructor
Initialize.
-
#run ⇒ Object
Méthode à définir dans tous les cas !.
Methods inherited from Controller
inherited, #loadFile, #loadModel, #render, #set_properties
Constructor Details
#initialize ⇒ PrincipaleControleur
Initialize
16 17 18 19 20 |
# File 'app/controller/PrincipaleControleur.rb', line 16 def initialize () #paramètres fenêtre @title = "Sudoku" @resizable = false end |
Instance Method Details
#run ⇒ Object
Méthode à définir dans tous les cas !
27 28 29 |
# File 'app/controller/PrincipaleControleur.rb', line 27 def run() return self end |