mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +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();
|
|
};
|
|
|