12 lines
273 B
C++
Executable file
12 lines
273 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Animation/AnimInstance.h"
|
|
#include "DualWieldAnimInstance.generated.h"
|
|
|
|
UCLASS(Blueprintable, NonTransient)
|
|
class UDualWieldAnimInstance : public UAnimInstance {
|
|
GENERATED_BODY()
|
|
public:
|
|
UDualWieldAnimInstance();
|
|
};
|
|
|