10 lines
243 B
Python
10 lines
243 B
Python
|
from data.Item import Item
|
||
|
from decision.ActionType import ActionType
|
||
|
|
||
|
|
||
|
class Action:
|
||
|
|
||
|
def __init__(self, action_type: ActionType, desired_item: Item = None):
|
||
|
self.desired_item = desired_item
|
||
|
self.action_type = action_type
|