Esempio n. 1
0
 public LDInputFrame GameplayTagToLD(TypeTag tag, ushort cell)
 {
     return(GameplayTagToLD(tag.GetType(), cell));
 }
Esempio n. 2
0
 public static bool Is(this Type T, TypeTag Tag) => T.IsAssignableFrom(Tag.GetType());
Esempio n. 3
0
 public byte GameplayTagToLDID(TypeTag tag)
 {
     return(GameplayTagToLDID(tag.GetType()));
 }
Esempio n. 4
0
 public bool Is(TypeTag Other) => Other.GetType().IsAssignableFrom(GetType());
Esempio n. 5
0
 public bool TryActivateAbilityByTag(TypeTag Tag)
 {
     return(TryActivateAbilityByTag(Tag.GetType()));
 }
Esempio n. 6
0
 public bool CanActivateTargetAbilityByTag(TypeTag Tag, Vector2Int TargetPos)
 {
     return(CanActivateTargetAbilityByTag(Tag.GetType(), TargetPos));
 }
Esempio n. 7
0
 public void RevokeAbility(TypeTag AbilityTag)
 {
     RevokeAbility(AbilityTag.GetType());
 }