dodano akcje oraz srodek, przykladowe srodki tworzone w akcjach

This commit is contained in:
tafit0902 2024-03-23 23:17:51 +01:00
parent 24fe7c40fc
commit 78eb846720
2 changed files with 11 additions and 0 deletions

6
Akcja.py Normal file
View File

@ -0,0 +1,6 @@
class Akcja:
srodki = [] #lista obiektów klasy Srodek
benefit = [] #lista typu string
def __init__(self, srodki, benefit):
self.srodki = srodki
self.benefit = benefit

5
Srodek.py Normal file
View File

@ -0,0 +1,5 @@
class Srodek:
def __init__(self, id, nazwa, typ):
self.id = id
self.nazwa = nazwa
self.typ = typ