This commit is contained in:
2026-03-10 09:31:39 -04:00
commit 1f4ab43c3c
52 changed files with 2660 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
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