mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
13 lines
368 B
C++
13 lines
368 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortAnimNotifyState_SpawnProp.h"
|
|
#include "FortAnimNotifyState_SpawnPickaxe.generated.h"
|
|
|
|
UCLASS(Blueprintable, CollapseCategories, EditInlineNew)
|
|
class FORTNITEGAME_API UFortAnimNotifyState_SpawnPickaxe : public UFortAnimNotifyState_SpawnProp {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortAnimNotifyState_SpawnPickaxe();
|
|
};
|
|
|