Project Initialization

First Upload to Gitea
This commit is contained in:
2026-07-29 19:23:45 +02:00
commit c34449aac5
23 changed files with 2046 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import RobotState
class IdleState(RobotState):
def update(self, ctx, intent, dt):
if intent.walk:
return "walking"
return None