using BrewMonster; using BrewMonster.Scripts.Managers; namespace BrewMonster.Scripts { public class EC_IvtrDoubleExp : EC_IvtrItem { private DOUBLE_EXP_ESSENCE m_pDBEssence; /// /// Not create logic yet (add summary later) /// /// Template id /// Expire date public EC_IvtrDoubleExp(int tid, int expire_date) : base(tid, expire_date) { } public EC_IvtrDoubleExp(EC_IvtrDoubleExp other) : base(other) { } public DOUBLE_EXP_ESSENCE GetDBEssence() { return m_pDBEssence; } } }