Files
Continentis/Assets/Scripts/MainGame/Card/CardSubmodules/WeightSubmodule.cs

21 lines
543 B
C#
Raw Normal View History

2025-10-03 00:02:43 -04:00
using System;
using UnityEngine;
namespace Continentis.MainGame.Card
{
public class WeightSubmodule : SubmoduleBase<CardLogicBase>
{
public bool forceUse;
public bool forceIgnore;
public float baseWeight;
public float currentWeight;
public WeightSubmodule(CardLogicBase owner) : base(owner)
{
this.forceUse = false;
this.forceIgnore = false;
this.baseWeight = owner.cardData.baseWeight;
this.currentWeight = baseWeight;
}
}
}