12 lines
No EOL
283 B
C#
12 lines
No EOL
283 B
C#
using System.Threading.Tasks;
|
|
using WingsEmu.Game._ItemUsage.Event;
|
|
using WingsEmu.Game.Networking;
|
|
|
|
namespace WingsEmu.Game._ItemUsage;
|
|
|
|
public interface IItemUsageByVnumHandler
|
|
{
|
|
long[] Vnums { get; }
|
|
|
|
Task HandleAsync(IClientSession session, InventoryUseItemEvent e);
|
|
} |