mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 12:33:39 +00:00
13 lines
274 B
C++
13 lines
274 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Commandlets/Commandlet.h"
|
|
#include "PakWhitelistCommandlet.generated.h"
|
|
|
|
UCLASS(Blueprintable, NonTransient)
|
|
class UPakWhitelistCommandlet : public UCommandlet {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPakWhitelistCommandlet();
|
|
};
|
|
|