Files
2025TapTapGameJam/Assets/Script/Gameplay/Card/CardEffect/CardContext.cs
2025-10-15 21:31:13 +08:00

16 lines
298 B
C#

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