Program Listing for File rover.h¶
↰ Return to documentation for file (agents/rover.h)
#pragma once
#include "lupnt/agents/agent.h"
namespace lupnt {
class Rover : public AgentWithDynamics {
public:
Rover() = default;
explicit Rover(Config& config);
Cart6 GetStateAt(Real /*t*/) const override { return state_; }
};
} // namespace lupnt