コード例 #1
0
 public static float TryGetCost(this CastSpellDescriptor spell) => !spell ? 0 : spell.EnergyCost;
コード例 #2
0
 public static SpellCategory TryGetCategory(this CastSpellDescriptor spell) => !spell ? SpellCategory.None : spell.Category;
コード例 #3
0
 public static SpellTarget TryGetTarget(this CastSpellDescriptor spell) => !spell ? SpellTarget.None : spell.Target;
コード例 #4
0
 public static string TryGetName(this CastSpellDescriptor spell) => !spell ? "" : spell.GetIdent();