SceneUIConfiguration.h 460 B

12345678910111213141516171819202122
  1. #pragma once
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. #include <AzCore/PlatformDef.h>
  10. #if defined(_LIB)
  11. #define SCENE_UI_API
  12. #else
  13. #ifdef SCENE_UI_EXPORTS
  14. #define SCENE_UI_API AZ_DLL_EXPORT
  15. #else
  16. #define SCENE_UI_API AZ_DLL_IMPORT
  17. #endif
  18. #endif