SI_2020/agent.py

6 lines
144 B
Python
Raw Normal View History

2020-04-02 15:25:15 +02:00
class Agent:
def __init__(self, start_x, start_y, radius=5):
2020-04-02 15:25:15 +02:00
self.x = start_x
self.y = start_y
self.radius = radius