You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
479 B
C#
22 lines
479 B
C#
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
using EpicGames.BuildGraph;
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace AutomationTool
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Base class for any user defined graphs
|
||
|
|
/// </summary>
|
||
|
|
public abstract class BgGraphBuilder
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Callback used to instantiate the graph
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="Graph">The graph object</param>
|
||
|
|
public abstract void SetupGraph(BgGraphSpec Graph);
|
||
|
|
}
|
||
|
|
}
|