using asap.core; using cfg; namespace Assets.Scripts.UI.OfferSweep { public class PotionEventStrategy : IEventStrategy { public int GetSweepPackId(int redirectId) { var potion = GContext.container.Resolve().TbEventPotionMain.GetOrDefault(redirectId); return potion?.SweepPackId ?? 0; } } }