Skip to content

Commit

Permalink
Update starter
Browse files Browse the repository at this point in the history
  • Loading branch information
lawsie committed Nov 28, 2024
1 parent 28661a5 commit b0326ad
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions en/code/dont-collide-starter/main.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
#!/bin/python3

from p5 import *
from random import randint, seed

# Include global variables here
screen_size = 400

# Draw player function goes here



# Draw obstacles function goes here


def setup():
# Put code to run once here
size(screen_size, screen_size)
text_size(40)


def draw():
# Put code to run every frame here



# Keep this to run your code
Expand Down

0 comments on commit b0326ad

Please sign in to comment.