diff --git a/README.md b/README.md index aee1fea..081b08d 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,7 @@ which allows basic formatting. ## Description -(Describe your goal for this project. If you want to link to an -image, move the image to this directory, and then use the following syntax: +(I think I would like to do a mappy drawing, its an old video game where a mouse police man jumps on lines that act as trampolines, im not sure how i will get the character and or the background into my drawing, but it is something im intertesed in, i have added a picture to the directory about what this looks like, i bascially just want to code this little police mouse jumping up and down on the line and after the third jump the line breaks maybe if possible: ![Description](filename.png) @@ -18,4 +17,5 @@ image, move the image to this directory, and then use the following syntax: ## Planning -(Include your planning here, including your project milestone.) +(I'm going to be so honestly, i dont know how i would go about coding this with the drawings, I am defineitly going to ask for help lol, this is all i have planned as of right now, i will add more as i learn what to code ) + diff --git a/drawing.py b/drawing.py index 29fc89e..34c17cb 100644 --- a/drawing.py +++ b/drawing.py @@ -1,7 +1,19 @@ # drawing.py # ---------- -# By ____(you)___________ +# By Molly Chiarella # # (Briefly describe what this program does.) +import turtle + from turtle import * + +number_of_steps = 500 +dot_size = 100 +width = 1000 +height = 800 + + + + +turtle.done() \ No newline at end of file diff --git a/mappy.gif b/mappy.gif new file mode 100644 index 0000000..e3889ef Binary files /dev/null and b/mappy.gif differ