using UnityEngine; using System.Collections; using System.Collections.Generic; namespace UIWidgetsSamples.Shops { /// /// IOrder. /// public interface IOrder { /// /// Gets the order lines. /// /// The order lines. List GetOrderLines(); /// /// Order lines count. /// /// The lines count. int OrderLinesCount(); /// /// Total. /// int Total(); } }