AttackAction.cs 220 B

1234567891011
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class AttackAction : Action {
  5. Creature target;
  6. public AttackAction(Creature target) {
  7. this.target = target;
  8. }
  9. }