switch from Unity version control to git

This commit is contained in:
Leo Qu
2026-01-07 23:54:53 -05:00
commit a098ec74d9
10166 changed files with 1614580 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections;
using System.Collections.Generic;
[System.Serializable]
public class ServoCommand
{
public string ModuleId;
public string Type = "Servo";
public float TargetAngle;
}
[System.Serializable]
public class DCCommand
{
public string ModuleId;
public string Type = "DC";
public float RotateByDegrees;
public string Direction; // "Clockwise" or "CounterClockwise"
}