mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
14 lines
457 B
C++
14 lines
457 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Animation/AnimInstance.h"
|
|
//#include "AnimationSharingInstances.h" excluded for s7 project should be uncommented on s9 branch since plugin doesnt exist
|
|
#include "FortAnimSharingStateInstance.generated.h"
|
|
|
|
UCLASS(Blueprintable, NonTransient)
|
|
class UFortAnimSharingStateInstance : public UAnimInstance/* public UAnimSharingStateInstance*/ {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortAnimSharingStateInstance();
|
|
};
|
|
|