// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.BuildGraph;
using System;
using System.Collections.Generic;
using System.Text;
namespace AutomationTool
{
///
/// Base class for any user defined graphs
///
public abstract class BgGraphBuilder
{
///
/// Callback used to instantiate the graph
///
/// The graph object
public abstract void SetupGraph(BgGraphSpec Graph);
}
}