forked from ayte/PinmikPanik
17 lines
523 B
Python
17 lines
523 B
Python
|
import gamedata.objects.menu.menu as menu
|
||
|
|
||
|
class OptionMenu(menu.Menu):
|
||
|
def __init__(self,x,y,game,w=100,h=100):
|
||
|
super().__init__(x,y,game,w,h) # initialise l'objet de base avec les bons arguments
|
||
|
# Les dicos des boutons
|
||
|
def fnRetour(self,game):
|
||
|
game.scene = game.scenes.main
|
||
|
btnRetour= {"name":"Retour","function": fnRetour}
|
||
|
|
||
|
# Initialisation de la grille du menu
|
||
|
self.grid = [
|
||
|
[btnRetour]
|
||
|
]
|
||
|
|
||
|
self.create(self.grid,self.rect)
|