RuntimeMeshComponentPlugin.cpp 799 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright 2016 Chris Conway (Koderz). All Rights Reserved.
  2. #include "RuntimeMeshComponentPluginPrivatePCH.h"
  3. #include "RuntimeMeshVersion.h"
  4. #include "RuntimeMeshComponentPlugin.h"
  5. // Register the custom version with core
  6. FCustomVersionRegistration GRegisterRuntimeMeshCustomVersion(FRuntimeMeshVersion::GUID, FRuntimeMeshVersion::LatestVersion, TEXT("RuntimeMesh"));
  7. class FRuntimeMeshComponentPlugin : public IRuntimeMeshComponentPlugin
  8. {
  9. /** IModuleInterface implementation */
  10. virtual void StartupModule() override;
  11. virtual void ShutdownModule() override;
  12. };
  13. IMPLEMENT_MODULE(FRuntimeMeshComponentPlugin, RuntimeMeshComponent)
  14. void FRuntimeMeshComponentPlugin::StartupModule()
  15. {
  16. }
  17. void FRuntimeMeshComponentPlugin::ShutdownModule()
  18. {
  19. }
  20. DEFINE_LOG_CATEGORY(RuntimeMeshLog);