FighterBuffBase.cs 323 B

12345678910111213141516171819202122
  1. using UnityEngine;
  2. using System.Collections;
  3. namespace YLBattle
  4. {
  5. public class FighterBuffBase : MonoBehaviour
  6. {
  7. public int iid;
  8. // Use this for initialization
  9. void Start()
  10. {
  11. }
  12. // Update is called once per frame
  13. void Update()
  14. {
  15. }
  16. }
  17. }