天津23维预案
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.
 
 
 
 
 
 

28 lines
521 B

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