BsMonoPlugin.cpp 431 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 bs
  5. {
  6. extern "C" BS_MONO_EXPORT const char* getPluginName()
  7. {
  8. static const char* pluginName = "BansheeMono";
  9. return pluginName;
  10. }
  11. }