FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonbirds/python_birds.py at simples · DellLord/pythonbirds · GitHub
DellLord
/
pythonbirds
Public
forked from
pythonprobr/pythonbirds
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonbirds
/
python_birds.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (17 loc) · 615 Bytes
Breadcrumbs
pythonbirds
/
python_birds.py
Copy path
File metadata and controls
21 lines (17 loc) · 615 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
from
atores
import
PassaroVermelho
,
PassaroAmarelo
,
Porco
,
Obstaculo
from
fase
import
Fase
import
placa_grafica
fase_exemplo
=
Fase
()
passaros
=
[
PassaroVermelho
(
3
,
3
),
PassaroAmarelo
(
3
,
3
),
PassaroAmarelo
(
3
,
3
)]
porcos
=
[
Porco
(
78
,
1
),
Porco
(
70
,
1
)]
obstaculos
=
[
Obstaculo
(
31
,
10
)]
fase_exemplo
.
adicionar_passaro
(
*
passaros
)
fase_exemplo
.
adicionar_porco
(
*
porcos
)
fase_exemplo
.
adicionar_obstaculo
(
*
obstaculos
)
# Solução para ganhar
# fase_exemplo.lancar(45, 1)
# fase_exemplo.lancar(63, 3)
# fase_exemplo.lancar(23, 4)
if
__name__
==
'__main__'
:
placa_grafica
.
animar
(
fase_exemplo
)
Back
|
FazBrowse Home
|
New Git URL