Switch osu! and pong place
This commit is contained in:
6
main.py
6
main.py
@@ -56,10 +56,10 @@ def main():
|
||||
global time, delta
|
||||
|
||||
# Create Canvas
|
||||
canvas_osu = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1)
|
||||
canvas_osu.place(x = 2, y = 2)
|
||||
canvas_pong = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1)
|
||||
canvas_pong.place(x = 404, y = 2)
|
||||
canvas_pong.place(x = 2, y = 2)
|
||||
canvas_osu = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1)
|
||||
canvas_osu.place(x = 404, y = 2)
|
||||
canvas_space = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1)
|
||||
canvas_space.place(x = 2, y = 304)
|
||||
canvas_fall = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1)
|
||||
|
||||
Reference in New Issue
Block a user