2
0

BsScriptEditorPrerequisites.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "BsScriptEnginePrerequisites.h"
  5. #include "BsEditorPrerequisites.h"
  6. #if (BS_PLATFORM == BS_PLATFORM_WIN32) && !defined(__MINGW32__)
  7. # ifdef BS_SCR_BED_EXPORTS
  8. # define BS_SCR_BED_EXPORT __declspec(dllexport)
  9. # else
  10. # if defined( __MINGW32__ )
  11. # define BS_SCR_BED_EXPORT
  12. # else
  13. # define BS_SCR_BED_EXPORT __declspec(dllimport)
  14. # endif
  15. # endif
  16. #elif defined ( BS_GCC_VISIBILITY )
  17. # define BS_SCR_BED_EXPORT __attribute__ ((visibility("default")))
  18. #else
  19. # define BS_SCR_BED_EXPORT
  20. #endif
  21. /** @addtogroup Plugins
  22. /** @defgroup SBansheeEditor SBansheeEditor
  23. * Contains script interop objects and other scripting functionality for BansheeEditor.
  24. * @{
  25. */
  26. /** @defgroup ScriptInteropEditor Script interop objects
  27. * Script interop objects for communicating between native code and MBansheeEditor managed assembly.
  28. * @{
  29. */
  30. /** @} */
  31. /** @} */
  32. namespace BansheeEngine
  33. {
  34. class ScriptEditorWindow;
  35. class GUIGameObjectField;
  36. class GUIResourceField;
  37. class GUITextureField;
  38. class ScriptHandleSliderBase;
  39. class ScriptPlatformInfo;
  40. }