Files
IGP-Fan-Reference/Model/TechTree/TechTreeEdgeType.cs
T

13 lines
505 B
C#

namespace Model.TechTree;
public static class TechTreeEdgeType
{
public static string Produces = "Produces";
public static string ProducedAt = "ProducedAt";
public static string RequiresProduction = "RequiresProduction";
public static string RequiresResearch = "RequiresResearch";
public static string Morph = "Morph";
public static string Upgrades = "Upgrades";
public static string UpgradedBy = "UpgradedBy";
public static string VanguardReplaces = "VanguardReplaces";
}