// {BEGIN_LICENSE} /* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ // {END_LICENSE} #pragma once #include #include #include #include #include #include #include #include namespace ${SanitizedCppName} { class ${SanitizedCppName}SampleComponent : public AZ::Component , public ImGui::ImGuiUpdateListenerBus::Handler { public: AZ_COMPONENT(${SanitizedCppName}SampleComponent, "{${Random_Uuid}}", AZ::Component); ${SanitizedCppName}SampleComponent(); ~${SanitizedCppName}SampleComponent() = default; void Activate() override; void Deactivate() override; static void Reflect(AZ::ReflectContext* context); private: void OnImGuiUpdate() override; AZStd::vector m_goalEntities; std::shared_ptr> m_goalPublisher; geometry_msgs::msg::PoseStamped m_goalMessage; ROS2::TopicConfiguration m_goalTopicConfiguration; }; } // namespace ${SanitizedCppName}