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,29 @@
// <auto-generated>
// automatically generated by the FlatBuffers compiler, do not modify
// </auto-generated>
public enum ModuleState : byte
{
NONE = 0,
MotorState = 1,
};
static public class ModuleStateVerify
{
static public bool Verify(Google.FlatBuffers.Verifier verifier, byte typeId, uint tablePos)
{
bool result = true;
switch((ModuleState)typeId)
{
case ModuleState.MotorState:
result = MotorStateVerify.Verify(verifier, tablePos);
break;
default: result = true;
break;
}
return result;
}
}