Add first version of snake.

This commit is contained in:
paulusja 2026-04-16 16:10:56 +02:00
parent 01e4afd552
commit 3c64cf8228

View File

@ -11,4 +11,8 @@ class Window:
def reset(self):
self.__surface.fill(self.__color)
def draw_object(self, game_object):
game_object.draw(self.__surface)