38 lines
799 B
C++

// 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);