mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-03 04:03:37 +00:00
23 lines
447 B
C++
23 lines
447 B
C++
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
/**
|
|
* The public interface to this module
|
|
*/
|
|
class FAnimSharingEdModule : public IModuleInterface
|
|
{
|
|
public:
|
|
FAnimSharingEdModule() {}
|
|
|
|
virtual void StartupModule();
|
|
virtual void ShutdownModule();
|
|
private:
|
|
class FAssetTypeActions_AnimationSharingSetup* AssetAction;
|
|
};
|
|
|