added new level
This commit is contained in:
parent
d337ddd503
commit
c5388a8999
1 changed files with 9 additions and 1 deletions
10
config.py
10
config.py
|
@ -16,6 +16,14 @@ LEVEL: Level = [
|
|||
Point(WIDTH * 3 / 4, HEIGHT / 2 + 5)
|
||||
)
|
||||
], []
|
||||
), Level(
|
||||
Point(WIDTH / 8, HEIGHT * 3 / 4), Point(WIDTH / 8, HEIGHT / 4), [
|
||||
Obstacle(
|
||||
Point(0, HEIGHT / 2 - 5), Point(WIDTH * 7 / 8, HEIGHT / 2 + 5)
|
||||
)
|
||||
], [
|
||||
Point(WIDTH * 15 / 16, HEIGHT / 2)
|
||||
]
|
||||
), Level(
|
||||
Point(WIDTH / 2, HEIGHT - 10), Point(WIDTH / 2, 10), [
|
||||
Obstacle(
|
||||
|
@ -43,4 +51,4 @@ LEVEL: Level = [
|
|||
Point(WIDTH / 2, HEIGHT * 5.5 / 8)
|
||||
]
|
||||
)
|
||||
][1]
|
||||
][0]
|
||||
|
|
Reference in a new issue