Sha256: a72268629995233e050a3d3a0279583ca1aff162c989852ecb88d75e3e371268

Contents?: true

Size: 555 Bytes

Versions: 4

Compression:

Stored size: 555 Bytes

Contents

# => Controlleur vue principale
# => Author::       Valentin, DanAurea
# => Version::      0.1
# => Copyright::    © 2016
# => License::      Distributes under the same terms as Ruby
# 	
 	
##
## Classe permettant de créer un contrôleur pour la vue FenetrePrincipale
##
class PrincipaleControleur < Controller
	
	##
    ## Initialize
    ##
	def initialize ()
		#paramètres fenêtre
		@title = "Sudoku"
		@resizable = false
	end

	##
    ## Méthode à définir dans tous les cas !
    ##
    ## @return 	self
    ##
	def run()
		return self
	end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
Dogeku-1.0.4 app/controller/PrincipaleControleur.rb
Dogeku-1.0.3 app/controller/PrincipaleControleur.rb
Dogeku-1.0.2 app/controller/PrincipaleControleur.rb
Dogeku-1.0.1 app/controller/PrincipaleControleur.rb