SubscriptionRegistryProxy.cpp 682 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * SubscriptionRegistryProxy.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "SubscriptionRegistryProxy.h"
  12. #include "../Registry.h"
  13. VCMI_LIB_NAMESPACE_BEGIN
  14. namespace scripting
  15. {
  16. namespace api
  17. {
  18. namespace events
  19. {
  20. //No methods here, just an empty metatable for type safety.
  21. VCMI_REGISTER_CORE_SCRIPT_API(EventSubscriptionProxy, "EventSubscription");
  22. const std::vector<EventSubscriptionProxy::CustomRegType> EventSubscriptionProxy::REGISTER_CUSTOM = {};
  23. }
  24. }
  25. }
  26. VCMI_LIB_NAMESPACE_END