LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DunGen/Graph/FlowGraphObjectReference.cs
2023-12-22 18:30:10 -05:00

17 lines
259 B
C#

using System;
using UnityEngine;
namespace DunGen.Graph
{
[Serializable]
public abstract class FlowGraphObjectReference
{
[SerializeField]
protected DungeonFlow flow;
[SerializeField]
protected int index;
public DungeonFlow Flow => flow;
}
}