15 lines
384 B
C++
Executable file
15 lines
384 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/DataAsset.h"
|
|
#include "SchematicBankInterface.h"
|
|
#include "SchematicBankBase.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class FSD_API USchematicBankBase : public UDataAsset, public ISchematicBankInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
USchematicBankBase();
|
|
|
|
// Fix for true pure virtual functions not being implemented
|
|
};
|
|
|