TModLoader v1.4.4.9
TModLoader source code documentation
Loading...
Searching...
No Matches

◆ Dependents()

List< T > Terraria.ModLoader.TopoSort< T >.Dependents ( T t)
inline

Definition at line 103 of file TopoSort.cs.

104 {
105 if (!dependentDict.TryGetValue(t, out var list))
106 {
107 return new List<T>();
108 }
109 return list;
110 }
IDictionary< T, List< T > > dependentDict
Definition TopoSort.cs:37
readonly ReadOnlyCollection< T > list
Definition TopoSort.cs:33

References Terraria.ModLoader.TopoSort< T >.dependentDict, and Terraria.ModLoader.TopoSort< T >.list.