mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 12:33:39 +00:00
13 lines
277 B
C++
13 lines
277 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CommonButton.h"
|
|
#include "FortDefenderSlotButton.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortDefenderSlotButton : public UCommonButton {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortDefenderSlotButton();
|
|
};
|
|
|