BulletBuff.cs 194 B

12345678910111213141516
  1. using UnityEngine;
  2. using System.Collections;
  3. public class BulletBuff : MonoBehaviour
  4. {
  5. public GameObject graphic;
  6. public float duration;
  7. public virtual void end(ITarget target)
  8. {
  9. }
  10. }