2025-10-03 00:02:43 -04:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Continentis.MainGame.Card
|
|
|
|
|
{
|
|
|
|
|
public partial class PlaySubmodule : SubmoduleBase<CardLogicBase>
|
|
|
|
|
{
|
2025-10-23 00:49:44 -04:00
|
|
|
public bool isDuringPlayEffect;
|
|
|
|
|
|
2025-10-03 00:02:43 -04:00
|
|
|
public PlaySubmodule(CardLogicBase card) : base(card)
|
|
|
|
|
{
|
2025-10-23 00:49:44 -04:00
|
|
|
isDuringPlayEffect = false;
|
2025-10-03 00:02:43 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public partial class PlaySubmodule
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|