18 lines
505 B
Python
18 lines
505 B
Python
import pygame
|
|
|
|
class OrderTable(object):
|
|
|
|
def __init__(self, x, y, game):
|
|
self.game = game
|
|
game.idItem += 1
|
|
game.idOrderTable += 1
|
|
self.idItem = game.idItem
|
|
self.idOrderTable = game.idOrderTable
|
|
self.x = x
|
|
self.y = y
|
|
self.image = pygame.image.load("./Images/lada.png")
|
|
self.type = "orderTable"
|
|
|
|
def draw(self):
|
|
self.rect = pygame.Rect(self.x, self.y, 50, 50)
|
|
self.game.screen.blit(self.image,(self.x, self.y)) |