10 lines
141 B
C#
10 lines
141 B
C#
namespace Zennysoft.Ma.Adapter
|
|
{
|
|
public interface IDroppedItem
|
|
{
|
|
void RescueItem();
|
|
|
|
public InventoryItem Item { get; }
|
|
}
|
|
}
|