IAttackResult.cancelFurtherAttacks
public bool cancelFurtherAttacks { get; }Description#
Gets if the attack should stop
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(IAttackResult target) { bool result = target.cancelFurtherAttacks; } }