QuestMap/QuestMap/GraphInfo.cs

14 lines
325 B
C#
Raw Normal View History

2021-07-21 06:11:01 +00:00
using Microsoft.Msagl.Core.Layout;
namespace QuestMap {
internal class GraphInfo {
internal GeometryGraph Graph { get; }
internal Node? Centre { get; }
internal GraphInfo(GeometryGraph graph, Node? centre) {
this.Graph = graph;
this.Centre = centre;
}
}
}