5 lines
111 B
Python
5 lines
111 B
Python
class MovingComponent:
|
|
def __init__(self):
|
|
self.target = None
|
|
self.direction_vector = None
|