23 lines
548 B
C++
23 lines
548 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Factories/Factory.h"
|
|
#include "BagConfigFactory.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class PROJECTFISHEDITOR_API UBagConfigFactory : public UFactory
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
UBagConfigFactory();
|
|
|
|
//interface
|
|
virtual UObject* FactoryCreateNew(UClass* Class, UObject* InParent, FName Name, EObjectFlags Flags, UObject* Context, FFeedbackContext* Warn) override;
|
|
virtual bool ShouldShowInNewMenu() const override;
|
|
};
|