IBuffOper.cs 281 B

1234567891011121314151617
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace YLBattle
  5. {
  6. public interface IBuffOper
  7. {
  8. /// <summary>
  9. ///
  10. /// </summary>
  11. /// <param name="iid"></param>
  12. void BreakBuff(int iid);
  13. }
  14. }