terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ GetCondition< T >()

T Terraria.Achievements.AchievementManager.GetCondition< T > ( string achievementName,
string conditionName )
inline
Type Constraints
T :AchievementCondition 

Definition at line 198 of file AchievementManager.cs.

198 : AchievementCondition
199 {
200 AchievementCondition condition;
201 do
202 {
203 condition = this.GetCondition(achievementName, conditionName);
204 if (condition == null)
205 {
206 return;
207 }
208 }
209 while (condition != null);
210 throw new InvalidCastException();
211 }
class f__AnonymousType0<< Count > j__TPar
AchievementCondition GetCondition(string achievementName, string conditionName)

References Terraria.Achievements.AchievementManager.GetCondition(), and j__TPar.