From 48d8b7bfd5021cc627b8f55c8a1c8ffc40aa6b2f Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Tue, 1 Nov 2022 23:23:40 +0100 Subject: Minor changes --- snake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'snake.py') diff --git a/snake.py b/snake.py index a517146..bec24d0 100755 --- a/snake.py +++ b/snake.py @@ -7,7 +7,7 @@ class Snake: Programmable Game of Snake written in PyGame """ - def __init__(self, startat=(0,0), margin=80,length=4,grid_width=30,grid_height=30, grid_pts=30,fps=80): + def __init__(self, startat=(0,0), margin=80,length=4,grid_width=30,grid_height=30, grid_pts=30,fps=180): # Init attributes self.grid_width=grid_width self.grid_height=grid_height -- cgit v1.2.3