8 lines
209 B
Python
8 lines
209 B
Python
|
import pygame
|
||
|
import prefs
|
||
|
class Kelner:
|
||
|
def __init__ (self, imie, nazwisko,numer_pracowniczy):
|
||
|
self.imie = imie
|
||
|
self.nazwisko = nazwisko
|
||
|
self.numer_pracowniczy = numer_pracowniczy
|