父类的升级逻辑,空的,请在子类重写
This commit is contained in:
parent
8fec6273a4
commit
838821f0a9
@ -13,6 +13,7 @@ using UnityEngine.UIElements;
|
|||||||
using Debug = UnityEngine.Debug;
|
using Debug = UnityEngine.Debug;
|
||||||
using Image = UnityEngine.UI.Image;
|
using Image = UnityEngine.UI.Image;
|
||||||
using DG.Tweening;
|
using DG.Tweening;
|
||||||
|
using UnityEngine.SocialPlatforms;
|
||||||
public enum Camp
|
public enum Camp
|
||||||
{/// <summary>
|
{/// <summary>
|
||||||
/// Íæ¼Ò
|
/// Íæ¼Ò
|
||||||
@ -371,4 +372,10 @@ public class Role : Fun
|
|||||||
transform.DOPlay();
|
transform.DOPlay();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 升级逻辑
|
||||||
|
public virtual void Upgrade()
|
||||||
|
{
|
||||||
|
Debug.Log("父类的升级逻辑,空的,请在子类重写");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user