9 lines
216 B
Python
9 lines
216 B
Python
from mesa import Agent, Model
|
|
|
|
|
|
class ForkliftAgent(Agent):
|
|
|
|
def __init__(self, unique_id, model):
|
|
super().__init__(unique_id, model)
|
|
print("Created forklift Agent with ID: {}".format(unique_id))
|