Repository URL to install this package:
|
Version:
1.3.2 ▾
|
using System.Collections.Generic;
namespace Fluctio.FluctioSim.Core.MujocoExtensions.States
{
public class ChainState
{
internal readonly List<ComponentState> JointStates = new();
internal ChainState() {}
}
}