adding some basic exchange

This commit is contained in:
2023-01-22 14:46:05 +01:00
parent 841b49caec
commit 3a421ceb34
5 changed files with 188 additions and 1 deletions
+2 -1
View File
@@ -1,5 +1,5 @@
class Business():
def __init__(self,production,balance) -> None:
def __init__(self,id,production,balance) -> None:
"""production (dict): {
name: 'Gem',
amount: 4,
@@ -10,6 +10,7 @@ class Business():
}
balance (int): Starting Balance
"""
self.id=id
self.production=production
self.balance=balance
#Setup Inventory