WhiteBoxToolApiReflection.h 688 B

1234567891011121314151617181920212223242526
  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. namespace AZ
  10. {
  11. class ReflectContext;
  12. } // namespace AZ
  13. namespace WhiteBox
  14. {
  15. struct WhiteBoxMesh;
  16. struct WhiteBoxMeshHandle;
  17. //! Converts a WhiteBoxMeshHandle into a WhiteBoxMesh pointer.
  18. WhiteBoxMesh* WhiteBoxMeshFromHandle(const WhiteBoxMeshHandle& whiteBoxMeshHandle);
  19. //! Exposes all of the White Box methods to Behavior Context for use in scripting.
  20. void Reflect(AZ::ReflectContext* context);
  21. } // namespace WhiteBox