This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
URRobot/Assets/Scripts/Common/RobotSpecInfo.cs
jmaniuvc 282fcfe688 main
2025-05-29 09:51:58 +09:00

18 lines
375 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class RobotSpecInfo
{
public string name;
public float[] minAngle;
public float[] maxAngle;
public RobotSpecInfo(string name, float[] minAngle, float[] maxAngle)
{
this.name = name;
this.minAngle = minAngle;
this.maxAngle = maxAngle;
}
}