LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DunGen/Graph/FlowGraphObjectReference.cs

18 lines
259 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using System;
using UnityEngine;
namespace DunGen.Graph
{
[Serializable]
public abstract class FlowGraphObjectReference
{
[SerializeField]
protected DungeonFlow flow;
[SerializeField]
protected int index;
public DungeonFlow Flow => flow;
}
}