Program Listing for File lander.h

Return to documentation for file (agents/lander.h)

#pragma once

#include "lupnt/agents/agent.h"

namespace lupnt {

  class Lander : public AgentWithDynamics {
  public:
    Lander() = default;

    explicit Lander(Config& config);

    Cart6 GetStateAt(Real /*t*/) const override { return state_; }
  };

}  // namespace lupnt