using System.Collections; using System.Collections.Generic; using UnityEngine; public class AttackAction : Action { Creature target; public AttackAction(Creature target) { this.target = target; } }