Files
2025-11-25 20:14:41 +09:00

29 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Project
{
public enum eSMStep
{
IDLE,
RUN,
}
public enum eMotList
{
Left=0,
Center,
Right,
}
public enum eMotControl
{
Stop,
Down,
Up,
}
}