using GameCore; using UnityEngine; public interface ISupplyDropGameCtrl { SupplyDropCtrl supplyDropCtrl { get; set; } GameObject containerModel { get; set; } void InitData(SupplyDropCtrl supplyDropCtrl, int supplyDropId, ResetFishingStatusEvent resetFishing); void AddPlayerItem(ItemData itemData); void Dispose(); }