| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // Copyright 2016 Chris Conway (Koderz). All Rights Reserved.
- #include "RuntimeMeshComponentPluginPrivatePCH.h"
- #include "RuntimeMeshVersion.h"
- #include "RuntimeMeshComponentPlugin.h"
- // Register the custom version with core
- FCustomVersionRegistration GRegisterRuntimeMeshCustomVersion(FRuntimeMeshVersion::GUID, FRuntimeMeshVersion::LatestVersion, TEXT("RuntimeMesh"));
- class FRuntimeMeshComponentPlugin : public IRuntimeMeshComponentPlugin
- {
- /** IModuleInterface implementation */
- virtual void StartupModule() override;
- virtual void ShutdownModule() override;
- };
- IMPLEMENT_MODULE(FRuntimeMeshComponentPlugin, RuntimeMeshComponent)
- void FRuntimeMeshComponentPlugin::StartupModule()
- {
- }
- void FRuntimeMeshComponentPlugin::ShutdownModule()
- {
- }
- DEFINE_LOG_CATEGORY(RuntimeMeshLog);
|