You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
575 B
C++
29 lines
575 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "EntitySystem/MovieSceneEntitySystem.h"
|
|
|
|
#include "MovieSceneSpawnablesSystem.generated.h"
|
|
|
|
struct FMovieSceneAnimTypeID;
|
|
|
|
UCLASS(MinimalAPI)
|
|
class UMovieSceneSpawnablesSystem : public UMovieSceneEntitySystem
|
|
{
|
|
public:
|
|
|
|
GENERATED_BODY()
|
|
|
|
UMovieSceneSpawnablesSystem(const FObjectInitializer& ObjInit);
|
|
|
|
MOVIESCENE_API static FMovieSceneAnimTypeID GetAnimTypeID();
|
|
|
|
private:
|
|
|
|
virtual void OnRun(FSystemTaskPrerequisites& InPrerequisites, FSystemSubsequentTasks& Subsequents) override final;
|
|
};
|
|
|
|
|
|
|