BsMonoPrerequisites.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "BsPrerequisites.h"
  5. #if (BS_PLATFORM == BS_PLATFORM_WIN32) && !defined(__MINGW32__)
  6. # ifdef BS_MONO_EXPORTS
  7. # define BS_MONO_EXPORT __declspec(dllexport)
  8. # else
  9. # if defined( __MINGW32__ )
  10. # define BS_MONO_EXPORT
  11. # else
  12. # define BS_MONO_EXPORT __declspec(dllimport)
  13. # endif
  14. # endif
  15. #elif defined ( BS_GCC_VISIBILITY )
  16. # define BS_MONO_EXPORT __attribute__ ((visibility("default")))
  17. #else
  18. # define BS_MONO_EXPORT
  19. #endif
  20. /** @addtogroup Plugins
  21. /** @defgroup Mono BansheeMono
  22. * Scripting language backend using Mono's CLR.
  23. */
  24. /** @} */
  25. namespace BansheeEngine
  26. {
  27. class MonoManager;
  28. class MonoAssembly;
  29. class MonoClass;
  30. class MonoMethod;
  31. class MonoField;
  32. class MonoProperty;
  33. }