Initial commit

This commit is contained in:
2026-05-29 08:08:19 +00:00
commit df53027dce
7 changed files with 132 additions and 0 deletions

33
main.py Normal file
View File

@@ -0,0 +1,33 @@
# Import library code
from p5 import *
from random import randint
# Set up global variables
screen_size = 400
# The draw_rocket function goes here
# The draw_background function goes here
def setup():
# Set up your animation here
size(screen_size, screen_size)
image_mode(CENTER)
global planet
planet = load_image('planet.png')
def draw():
# Things to do in every frame
run()