18 lines
365 B
Plaintext
18 lines
365 B
Plaintext
# Déclaration des décors
|
|
|
|
init 55:
|
|
image hall_entree = Placeholder('bg')
|
|
|
|
|
|
label matin:
|
|
|
|
if m.genre == "homme":
|
|
image personnage = Placeholder('boy')
|
|
elif m.genre == 'femme':
|
|
image personnage = Placeholder('girl')
|
|
|
|
show hall_entree
|
|
show personnage at left
|
|
m.c "Me voici arrivé au travail, allez zou au boulot."
|
|
|
|
return |