Files
2025TapTapGameJam/Assets/Script/Gameplay/Card/CardEffect/CardContext.cs

16 lines
302 B
C#

using UnityEngine;
using Interface;
namespace Gameplay
{
public class CardContext
{
public ICharacter Owner;
public ICharacter Enemy;
public CardContext(ICharacter owner,ICharacter enemy)
{
Owner = owner;
Enemy = enemy;
}
}
}