PythonProxyBus.h 550 B

1234567891011121314151617181920
  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 <EditorPythonBindings/PythonCommon.h>
  10. #include <pybind11/pybind11.h>
  11. namespace EditorPythonBindings
  12. {
  13. namespace PythonProxyBusManagement
  14. {
  15. //! Creates the 'azlmbr.bus' module so that Python script can use Open 3D Engine buses
  16. void CreateSubmodule(pybind11::module module);
  17. }
  18. }