using UnityEngine;
namespace Unity.MLAgents.Actuators
{
///
/// Editor components for creating Actuators. Generally an IActuator component should
/// have a corresponding ActuatorComponent.
///
public abstract class ActuatorComponent : MonoBehaviour
{
///
/// Create a collection of s. This is called by the during
/// initialization.
///
/// A collection of s
public abstract IActuator[] CreateActuators();
///
/// The specification of the possible actions for this ActuatorComponent.
/// This must produce the same results as the corresponding IActuator's ActionSpec.
///
///
public abstract ActionSpec ActionSpec { get; }
}
}