Program Listing for File ground_station_manager.h¶
↰ Return to documentation for file (agents/ground_station_manager.h)
#pragma once
#include "lupnt/agents/agent.h"
namespace lupnt {
class GroundStationManager : public Agent {
public:
GroundStationManager() = default;
explicit GroundStationManager(Config& config) : Agent(config) {}
Cart6 GetStateAt(Real /*t*/) const override { return Cart6(Vec6::Zero(), Frame::MOON_CI); }
};
} // namespace lupnt