mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-22 02:06:03 +08:00
38 lines
799 B
C++
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); |