AttackAction.cs 224 B

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