9 lines
145 B
C#
9 lines
145 B
C#
|
|
namespace Assets.Scripts.Actions.Interfaces
|
|
{
|
|
internal interface ISellableItem
|
|
{
|
|
public float Price { get; }
|
|
}
|
|
}
|