9 lines
238 B
Python
9 lines
238 B
Python
|
from data.CATEGORY import CATEGORY
|
||
|
from data.Item import Item
|
||
|
|
||
|
|
||
|
class StockPile:
|
||
|
def __init__(self, id: int, category: CATEGORY, itemList: [Item]):
|
||
|
self.id = id
|
||
|
self.category = category
|
||
|
self.itemList = itemList
|