12345678910111213141516171819202122 |
- using UnityEngine;
- using System.Collections;
- namespace YLBattle
- {
- public class FighterBuffBase : MonoBehaviour
- {
- public int iid;
- // Use this for initialization
- void Start()
- {
- }
- // Update is called once per frame
- void Update()
- {
- }
- }
- }
|