This commit is contained in:
karoel2 2020-04-06 21:26:27 +02:00
parent f68cbff936
commit 015bfb435a

View File

@ -17,6 +17,51 @@ from pygame.locals import (
SCREEN_WIDTH = 564
SCREEN_HEIGHT = 564
class Dishes:
#to do
x=0
y=0
def __int__(self, x, y):
self.x = x
self.y = y
def draw(self, surface, image):
surface.blit(image, (self.x, self.y))
class Clients:
#to do
x = 0
y = 0
def __int__(self, x, y):
self.x = x
self.y = y
def draw(self, surface, image):
surface.blit(image, (self.x, self.y))
class Kitchen:
#to do or delete
pass
class Order:
#to do
x = 0
y = 0
def __int__(self, x, y, id):
self.x = x
self.y = y
self.id = id
def draw():
screen.blit(background_image, [0, 0])
screen.blit(player.surf, player.rect)