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

◆ IndexInRange< T >() [1/2]

static bool Terraria.Utils.IndexInRange< T > ( this List< T > t,
int index )
inlinestatic

Definition at line 2363 of file Utils.cs.

2364 {
2365 if (index >= 0)
2366 {
2367 return index < t.Count;
2368 }
2369 return false;
2370 }