13 lines
505 B
C#
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";
|
|
} |