Files
UnrealEngineUWP/Engine/Source/Runtime/LevelSequence/Private/LevelSequenceModule.cpp
Max Preussner 56dd4c8ad0 Sequencer: Renamed ActorAnimation to LevelSequence
This will break existing content. An upgrade path is not available, i.e. no redirectors.

#CodeReview: max.chen, frank.fella, andrew.rodham, matt.kuhlenschmidt

[CL 2709960 by Max Preussner in Main branch]
2015-09-29 15:15:21 -04:00

23 lines
415 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "LevelSequencePCH.h"
#include "ModuleInterface.h"
/**
* Implements the LevelSequence module.
*/
class FLevelSequenceModule
: public IModuleInterface
{
public:
// IModuleInterface interface
virtual void StartupModule() override { }
virtual void ShutdownModule() override { }
};
IMPLEMENT_MODULE(FLevelSequenceModule, LevelSequence);