IAction.cs 242 B

1234567891011
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public interface IAction {
  5. public bool ActionPerformed { get; set; }
  6. public IEnumerator PerformAction();
  7. public bool HilightEnabled { get; set; }
  8. }