예제 #1
0
 static public bool TryGetStat <T>(this RPGStatCollection collection, RPGStatType statType, out T stat) where T : RPGStat
 {
     return(collection.TryGetStat <T>((int)statType, out stat));
 }
예제 #2
0
 static public bool TryGetStat(this RPGStatCollection collection, RPGStatType statType, out RPGStat stat)
 {
     return(collection.TryGetStat((int)statType, out stat));
 }