Files
Net.Project.B/Src/BuyStation/IBuyStationService.cs
CortexCore b07ae4fea7 1
2025-02-24 23:02:49 +08:00

13 lines
348 B
C#

using System.Collections;
using System.Collections.Generic;
using Cysharp.Threading.Tasks;
namespace Net.Project.B.Inventory
{
public interface IBuyStationService
{
public UniTask<IReadOnlyList<BuyStationComponent>> GetAllItemList();
public UniTask<bool> BuyItem(int buyer,BuyStationComponent buyStationComponent);
}
}