Add code
This commit is contained in:
parent
4c04b949a7
commit
b6c0d31dac
|
@ -1,2 +1,5 @@
|
||||||
# anifinal
|
# ghatgpt
|
||||||
Animação final
|
|
||||||
|
## Membros:
|
||||||
|
- Kaio (20241144010013)
|
||||||
|
- Guilherme (20241144010020)
|
|
@ -0,0 +1,51 @@
|
||||||
|
"""
|
||||||
|
module docs
|
||||||
|
"""
|
||||||
|
import turtle as tl
|
||||||
|
|
||||||
|
from menus import main_menu
|
||||||
|
|
||||||
|
def cena1():
|
||||||
|
"""Scene 1"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
def cena2():
|
||||||
|
"""Scene 2"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
def cena3():
|
||||||
|
"""Scene 3"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
def cena4():
|
||||||
|
"""Scene 4"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
def cena5():
|
||||||
|
"""Scene 5"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""...main function duh"""
|
||||||
|
scene_num = int(input(main_menu))
|
||||||
|
while scene_num != 6:
|
||||||
|
if scene_num == 1:
|
||||||
|
cena1()
|
||||||
|
elif scene_num == 2:
|
||||||
|
cena2()
|
||||||
|
elif scene_num == 3:
|
||||||
|
cena3()
|
||||||
|
elif scene_num == 4:
|
||||||
|
cena4()
|
||||||
|
elif scene_num == 5:
|
||||||
|
cena5()
|
||||||
|
else:
|
||||||
|
print("Cena não disponível")
|
||||||
|
scene_num = int(input(main_menu))
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main() # Aprender a da
|
||||||
|
|
||||||
|
|
||||||
|
tl.setup(600,600,None,None) #spawna a tela
|
||||||
|
draw = tl.Turtle() #coloca a tartaruga principal de desenho
|
Loading…
Reference in New Issue