CelticCraft/Plugins/VoxelFree/Source/VoxelGraphEditor/Private/VoxelEdGraph.h

18 lines
286 B
C
Raw Permalink Normal View History

2023-07-03 16:17:13 +00:00
// Copyright 2020 Phyronnaz
#pragma once
#include "CoreMinimal.h"
#include "EdGraph/EdGraph.h"
#include "VoxelEdGraph.generated.h"
class UVoxelGraphGenerator;
UCLASS()
class UVoxelEdGraph : public UEdGraph
{
GENERATED_BODY()
public:
UVoxelGraphGenerator* GetGenerator() const;
};