IBulletOpr.cs 155 B

1234567891011
  1. using UnityEngine;
  2. using System.Collections;
  3. namespace YLBattle
  4. {
  5. public interface IBulletOpr
  6. {
  7. bool GetBulletRunningState();
  8. }
  9. }