You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
441 B
23 lines
441 B
2 years ago
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace UIWidgetsSamples.Shops {
|
||
|
|
||
|
/// <summary>
|
||
|
/// IOrderLine.
|
||
|
/// </summary>
|
||
|
public interface IOrderLine {
|
||
|
/// <summary>
|
||
|
/// Gets or sets the item.
|
||
|
/// </summary>
|
||
|
/// <value>The item.</value>
|
||
|
Item Item {get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the count.
|
||
|
/// </summary>
|
||
|
/// <value>The count.</value>
|
||
|
int Count {get; set; }
|
||
|
}
|
||
|
}
|