Card爆改!
This commit is contained in:
@@ -3,9 +3,9 @@ using UnityEngine;
|
||||
|
||||
namespace Continentis.MainGame.Card
|
||||
{
|
||||
public abstract partial class CardBuffBase : BuffBase<CardLogicBase>
|
||||
public abstract partial class CardBuffBase : BuffBase<CardInstance>
|
||||
{
|
||||
public CardLogicBase attachedCard;
|
||||
public CardInstance attachedCard;
|
||||
public CharacterBase sourceCharacter;
|
||||
|
||||
public UsageSubmodule usageSubmodule;
|
||||
@@ -18,11 +18,11 @@ namespace Continentis.MainGame.Card
|
||||
|
||||
public partial class CardBuffBase
|
||||
{
|
||||
public override void Apply(CardLogicBase attached)
|
||||
public override void Apply(CardInstance attached)
|
||||
{
|
||||
this.Apply(attached, null);
|
||||
}
|
||||
|
||||
public abstract void Apply(CardLogicBase attachedCard, CharacterBase sourceCharacter = null);
|
||||
public abstract void Apply(CardInstance attachedCard, CharacterBase sourceCharacter = null);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user