mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
16 lines
294 B
C++
16 lines
294 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Object.h"
|
|
#include "FortBenchManager.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortBenchManager : public UObject {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortBenchManager();
|
|
UFUNCTION(BlueprintCallable)
|
|
void StopFortBench();
|
|
|
|
};
|
|
|