Compare commits
No commits in common. "ef01f948500bf2efee3ddfaad66366e299e448de" and "6f3ce87ac25bb076dd72c89a4869db637141deff" have entirely different histories.
ef01f94850
...
6f3ce87ac2
16
etykieta.py
16
etykieta.py
@ -1,16 +0,0 @@
|
||||
#from main import pygame
|
||||
import secrets, string
|
||||
|
||||
class Etykieta:
|
||||
def __init__(self, id, nadawca, adres, imie, nazwisko, telefon):
|
||||
self.nadawca = nadawca
|
||||
self.adres = adres
|
||||
self.imie = imie
|
||||
self.nazwisko = nazwisko
|
||||
self.telefon = telefon
|
||||
self.id = ''.join(secrets.choice(string.ascii_uppercase + string.digits) for _ in range(9))
|
||||
|
||||
|
||||
|
||||
|
||||
|
1
main.py
1
main.py
@ -1,7 +1,6 @@
|
||||
import sys
|
||||
import pygame
|
||||
import regal
|
||||
import paczka
|
||||
|
||||
pygame.init()
|
||||
screen = pygame.display.set_mode((980, 980))
|
||||
|
@ -1,10 +1,9 @@
|
||||
from etykieta import Etykieta
|
||||
from main import pygame
|
||||
|
||||
|
||||
class Paczka:
|
||||
|
||||
def __init__(self, rozmiar, waga, kategoria, czy_krucha, nadawca, adres, imie, nazwisko, telefon):
|
||||
def __init__(self, rozmiar, waga, kategoria, czy_krucha):
|
||||
self.rozmiar = rozmiar
|
||||
self.waga = waga
|
||||
self.kategoria = kategoria
|
||||
@ -14,8 +13,6 @@ class Paczka:
|
||||
self.szerokosc = 0
|
||||
self.wysokosc = 0
|
||||
self.image = pygame.image.load("paczka_obrazek.png")
|
||||
self.label = Etykieta(nadawca, adres, imie, nazwisko, telefon)
|
||||
|
||||
|
||||
# zmienia rozmiar obrazka w zaleznosci od rozmiaru
|
||||
def __dobierz_rozmiar_obrazka(self):
|
||||
|
Loading…
Reference in New Issue
Block a user