BsMonoPlugin.cpp 450 B

123456789101112
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "BsMonoPrerequisites.h"
  4. namespace BansheeEngine
  5. {
  6. extern "C" BS_MONO_EXPORT const String& getPluginName()
  7. {
  8. static String pluginName = "BansheeMono";
  9. return pluginName;
  10. }
  11. }