Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Item/IThrownItem.cs
2026-02-13 15:59:10 -08:00

7 lines
128 B
C#

namespace Zennysoft.Ma.Adapter;
public interface IThrownItem
{
public IBaseInventoryItem ItemThatIsThrown { get; set; }
}