AttackResult.targetDestroyed
public bool targetDestroyed { get; }Description#
Gets if the target was destroyed by the attack
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(AttackResult target) { bool result = target.targetDestroyed; } }