Files
Gym_GPU/world/commons/other_robot.py
2026-03-14 21:31:00 -04:00

7 lines
195 B
Python

import numpy as np
class OtherRobot:
def __init__(self, is_teammate: bool=True):
self.is_teammate = is_teammate
self.position = np.zeros(3)
self.last_seen_time = None