SI_2020/agent.py

6 lines
144 B
Python

class Agent:
def __init__(self, start_x, start_y, radius=5):
self.x = start_x
self.y = start_y
self.radius = radius