Current section
Files
Jump to
Current section
Files
lib/bb/dsl/actuator.ex
# SPDX-FileCopyrightText: 2025 James Harton## SPDX-License-Identifier: Apache-2.0defmodule BB.Dsl.Actuator do @moduledoc "An actuator attached to a joint." defstruct __identifier__: nil, __spark_metadata__: nil, name: nil, child_spec: nil alias Spark.Dsl.Entity @type child_spec :: module | {module, Keyword.t()} @type t :: %__MODULE__{ __identifier__: any, __spark_metadata__: Entity.spark_meta(), name: atom, child_spec: child_spec }end