MultiplayerDebugMultiplayerMetrics.h 708 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <AzCore/Name/Name.h>
  10. #include <AzCore/Component/Entity.h>
  11. #ifdef IMGUI_ENABLED
  12. # include <imgui/imgui.h>
  13. # include <ImGuiBus.h>
  14. # include <LYImGuiUtils/HistogramContainer.h>
  15. #endif
  16. namespace Multiplayer
  17. {
  18. class MultiplayerDebugMultiplayerMetrics final
  19. {
  20. public:
  21. MultiplayerDebugMultiplayerMetrics() = default;
  22. ~MultiplayerDebugMultiplayerMetrics() = default;
  23. #ifdef IMGUI_ENABLED
  24. void OnImGuiUpdate();
  25. #endif
  26. };
  27. }