mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 17:04:45 +01:00
16 lines
497 B
C#
16 lines
497 B
C#
namespace MoleMole.Config
|
|
{
|
|
[GeneratePartialHash(CombineGeneratedFile = true)]
|
|
public class ByIsPlayerAvatar : ConfigAbilityPredicate, IHashable
|
|
{
|
|
public void ObjectContentHashOnto(ref int lastHash)
|
|
{
|
|
}
|
|
|
|
public override bool Call(ActorAbilityPlugin abilityPlugin, ActorAbility instancedAbility, ActorModifier instancedModifier, BaseAbilityActor target, BaseEvent evt)
|
|
{
|
|
return abilityPlugin.ByIsPlayerAvatarHandler(this, instancedAbility, instancedModifier, target, evt);
|
|
}
|
|
}
|
|
}
|